aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/rx.c
diff options
context:
space:
mode:
authorThomas Pedersen <thomas@cozybit.com>2011-10-26 17:47:29 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-11-08 15:55:27 -0500
commitae2772b313b98a14f69b5bc67135c9fee48771be (patch)
treeb219dba159c95c5de70c0c84e7aec3f23a70b108 /net/mac80211/rx.c
parent739522baa1d6804a3ff33e8c135db0e6b2165f75 (diff)
mac80211: allow frame aggregation for mesh
Signed-off-by: Thomas Pedersen <thomas@cozybit.com> Signed-off-by: Ashok Nagarajan <anagar6@uic.edu> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r--net/mac80211/rx.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index c74e542a26b0..3173dcfc2136 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -2203,13 +2203,8 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
2203 2203
2204 switch (mgmt->u.action.category) { 2204 switch (mgmt->u.action.category) {
2205 case WLAN_CATEGORY_BACK: 2205 case WLAN_CATEGORY_BACK:
2206 /*
2207 * The aggregation code is not prepared to handle
2208 * anything but STA/AP due to the BSSID handling;
2209 * IBSS could work in the code but isn't supported
2210 * by drivers or the standard.
2211 */
2212 if (sdata->vif.type != NL80211_IFTYPE_STATION && 2206 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2207 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2213 sdata->vif.type != NL80211_IFTYPE_AP_VLAN && 2208 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2214 sdata->vif.type != NL80211_IFTYPE_AP) 2209 sdata->vif.type != NL80211_IFTYPE_AP)
2215 break; 2210 break;