Skip to content

Commit

Permalink
mac80211: fix TID for null poll response
Browse files Browse the repository at this point in the history
The queue mapping/TID for non-QoS null data
responses to is never set, making it default
to BK. Fix that.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Johannes Berg authored and John W. Linville committed Oct 14, 2011
1 parent 423e38e commit 59b6625
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions net/mac80211/sta_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -1203,11 +1203,9 @@ static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);

skb->priority = tid;
skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
if (qos) {
skb->priority = tid;

skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);

nullfunc->qos_ctrl = cpu_to_le16(tid);

if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
Expand Down

0 comments on commit 59b6625

Please sign in to comment.