diff options
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index b46ba7c67453..f7a1b61f9bef 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -234,7 +234,6 @@ static ieee80211_txrx_result | |||
234 | ieee80211_rx_h_check(struct ieee80211_txrx_data *rx) | 234 | ieee80211_rx_h_check(struct ieee80211_txrx_data *rx) |
235 | { | 235 | { |
236 | struct ieee80211_hdr *hdr; | 236 | struct ieee80211_hdr *hdr; |
237 | int always_sta_key; | ||
238 | hdr = (struct ieee80211_hdr *) rx->skb->data; | 237 | hdr = (struct ieee80211_hdr *) rx->skb->data; |
239 | 238 | ||
240 | /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */ | 239 | /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */ |
@@ -302,6 +301,16 @@ ieee80211_rx_h_check(struct ieee80211_txrx_data *rx) | |||
302 | return TXRX_QUEUED; | 301 | return TXRX_QUEUED; |
303 | } | 302 | } |
304 | 303 | ||
304 | return TXRX_CONTINUE; | ||
305 | } | ||
306 | |||
307 | |||
308 | static ieee80211_txrx_result | ||
309 | ieee80211_rx_h_load_key(struct ieee80211_txrx_data *rx) | ||
310 | { | ||
311 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data; | ||
312 | int always_sta_key; | ||
313 | |||
305 | if (rx->sdata->type == IEEE80211_IF_TYPE_STA) | 314 | if (rx->sdata->type == IEEE80211_IF_TYPE_STA) |
306 | always_sta_key = 0; | 315 | always_sta_key = 0; |
307 | else | 316 | else |
@@ -1208,6 +1217,7 @@ ieee80211_rx_handler ieee80211_rx_handlers[] = | |||
1208 | ieee80211_rx_h_monitor, | 1217 | ieee80211_rx_h_monitor, |
1209 | ieee80211_rx_h_passive_scan, | 1218 | ieee80211_rx_h_passive_scan, |
1210 | ieee80211_rx_h_check, | 1219 | ieee80211_rx_h_check, |
1220 | ieee80211_rx_h_load_key, | ||
1211 | ieee80211_rx_h_sta_process, | 1221 | ieee80211_rx_h_sta_process, |
1212 | ieee80211_rx_h_ccmp_decrypt, | 1222 | ieee80211_rx_h_ccmp_decrypt, |
1213 | ieee80211_rx_h_tkip_decrypt, | 1223 | ieee80211_rx_h_tkip_decrypt, |