aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/rx.c
diff options
context:
space:
mode:
authorJavier Cardona <javier@cozybit.com>2011-04-07 18:08:31 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-04-12 16:57:38 -0400
commit71839121a0f35f9968d2e204a76eb22683156fd8 (patch)
treeb7ce1ba4ced00c2dedcb498f30151f44d673af4f /net/mac80211/rx.c
parentb39c48fac1fc915a5dcd024bf6e9aabc855ed591 (diff)
mac80211: Let user space receive and send mesh auth/deauth frames
Signed-off-by: Javier Cardona <javier@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r--net/mac80211/rx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index fc2ff78582ca..359fc394a3b0 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -502,7 +502,8 @@ ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
502 502
503 if (ieee80211_is_probe_req(hdr->frame_control) || 503 if (ieee80211_is_probe_req(hdr->frame_control) ||
504 ieee80211_is_probe_resp(hdr->frame_control) || 504 ieee80211_is_probe_resp(hdr->frame_control) ||
505 ieee80211_is_beacon(hdr->frame_control)) 505 ieee80211_is_beacon(hdr->frame_control) ||
506 ieee80211_is_auth(hdr->frame_control))
506 return RX_CONTINUE; 507 return RX_CONTINUE;
507 508
508 return RX_DROP_MONITOR; 509 return RX_DROP_MONITOR;