Commit 1411f9b5 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

mac80211: fix RX sequence number check

According to 802.11-2007, we are doing the wrong thing in the
sequence number checks when receiving frames. This fixes it.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 2560b6e2
...@@ -334,13 +334,18 @@ static void ieee80211_parse_qos(struct ieee80211_rx_data *rx) ...@@ -334,13 +334,18 @@ static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
else else
rx->flags &= ~IEEE80211_RX_AMSDU; rx->flags &= ~IEEE80211_RX_AMSDU;
} else { } else {
if (unlikely(ieee80211_is_mgmt(hdr->frame_control))) { /*
/* Separate TID for management frames */ * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
tid = NUM_RX_DATA_QUEUES - 1; *
} else { * Sequence numbers for management frames, QoS data
/* no qos control present */ * frames with a broadcast/multicast address in the
tid = 0; /* 802.1d - Best Effort */ * Address 1 field, and all non-QoS data frames sent
} * by QoS STAs are assigned using an additional single
* modulo-4096 counter, [...]
*
* We also use that counter for non-QoS STAs.
*/
tid = NUM_RX_DATA_QUEUES - 1;
} }
rx->queue = tid; rx->queue = tid;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment