diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-12-18 19:31:23 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:59:46 -0500 |
commit | 678f5f7117d5780d3a51b201c9f44b7bf90f6a76 (patch) | |
tree | ddf555061ec729e3e14eabc506d0c3b8f32f25b8 /include/net | |
parent | ce3edf6d0b979fa4d5da7204fd8c6f77f2b8622a (diff) |
mac80211: clean up eapol handling in TX path
The previous patch left only one user of the ieee80211_is_eapol()
function and that user can be eliminated easily by introducing
a new "frame is EAPOL" flag to handle the frame specially (we
already have this information) instead of doing the (expensive)
ieee80211_is_eapol() all the time.
Also, allow unencrypted frames to be sent when they are injected.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/mac80211.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 3bd970f29f29..2606ca282c5e 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -307,6 +307,7 @@ struct ieee80211_tx_control { | |||
307 | * using the through | 307 | * using the through |
308 | * set_retry_limit configured | 308 | * set_retry_limit configured |
309 | * long retry value */ | 309 | * long retry value */ |
310 | #define IEEE80211_TXCTL_EAPOL_FRAME (1<<11) /* internal to mac80211 */ | ||
310 | u32 flags; /* tx control flags defined | 311 | u32 flags; /* tx control flags defined |
311 | * above */ | 312 | * above */ |
312 | u8 key_idx; /* keyidx from hw->set_key(), undefined if | 313 | u8 key_idx; /* keyidx from hw->set_key(), undefined if |