]> git.baikalelectronics.ru Git - kernel.git/commit
mac80211: Use IWEVASSOCREQIE instead of IWEVCUSTOM
authorJouni Malinen <jouni.malinen@atheros.com>
Tue, 19 Aug 2008 07:54:32 +0000 (10:54 +0300)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 27 Aug 2008 00:06:32 +0000 (20:06 -0400)
commit14b66ac6fb6d6de60b3c89f206c27bc22676e58a
tree4fec52d3c6628184bb5d6ac417fa5409f04d22e6
parent48f2f365dba73be71bb34901c3f28a683f79d4bb
mac80211: Use IWEVASSOCREQIE instead of IWEVCUSTOM

The previous code was using IWEVCUSTOM to report IEs from AssocReq and
AssocResp frames into user space. This can easily hit the 256 byte
limit (IW_CUSTOM_MAX) with APs that include number of vendor IEs in
AssocResp. This results in the event message not being sent and dmesg
showing "wlan0 (WE) : Wireless Event too big (366)" type of errors.

Convert mac80211 to use IWEVASSOCREQIE/IWEVASSOCRESPIE to avoid the
issue of being unable to send association IEs as wireless events. These
newer event types use binary encoding and larger maximum size
(IW_GENERIC_IE_MAX = 1024), so the likelyhood of not being able to send
the IEs is much smaller than with IWEVCUSTOM. As an extra benefit, the
code is also quite a bit simpler since there is no need to allocate an
extra buffer for hex encoding.

Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/mlme.c