summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Yurovsky2008-10-23 22:10:53 +0200
committerJohn W. Linville2008-11-01 00:00:56 +0100
commit4393dce9402c58744433c7a4f3931e17ddde4fb4 (patch)
treef42a761b216140a2f5ae69e58504268220d6d0ad
parentwireless: remove write-only 'granted' variable (diff)
downloadkernel-qcow2-linux-4393dce9402c58744433c7a4f3931e17ddde4fb4.tar.gz
kernel-qcow2-linux-4393dce9402c58744433c7a4f3931e17ddde4fb4.tar.xz
kernel-qcow2-linux-4393dce9402c58744433c7a4f3931e17ddde4fb4.zip
mac80211: allow all interfaces types to handle RX action frames
Eliminate the vif.type check in ieee80211_rx_h_action. This check is unnecessary (these action frames can be handled by all interface types) and currently prevents, for example, AP interfaces from handling BACK action frames such as ADDBA and DELBA requests. Signed-off-by: Andrey Yurovsky <andrey@cozybit.com> Acked-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--net/mac80211/rx.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index af6ce1064697..c4c95f1db605 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -1541,14 +1541,6 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
if (len < IEEE80211_MIN_ACTION_SIZE + 1)
return RX_DROP_MONITOR;
- /*
- * FIXME: revisit this, I'm sure we should handle most
- * of these frames in other modes as well!
- */
- if (sdata->vif.type != NL80211_IFTYPE_STATION &&
- sdata->vif.type != NL80211_IFTYPE_ADHOC)
- return RX_CONTINUE;
-
switch (mgmt->u.action.category) {
case WLAN_CATEGORY_BACK:
switch (mgmt->u.action.u.addba_req.action_code) {