|
@@ -107,7 +107,7 @@ static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
|
|
|
mgmt->u.action.u.addba_req.start_seq_num =
|
|
|
cpu_to_le16(start_seq_num << 4);
|
|
|
|
|
|
- ieee80211_tx_skb(sdata, skb);
|
|
|
+ ieee80211_tx_skb_tid(sdata, skb, tid);
|
|
|
}
|
|
|
|
|
|
void ieee80211_send_bar(struct ieee80211_vif *vif, u8 *ra, u16 tid, u16 ssn)
|
|
@@ -136,7 +136,7 @@ void ieee80211_send_bar(struct ieee80211_vif *vif, u8 *ra, u16 tid, u16 ssn)
|
|
|
bar->start_seq_num = cpu_to_le16(ssn);
|
|
|
|
|
|
IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
|
|
|
- ieee80211_tx_skb(sdata, skb);
|
|
|
+ ieee80211_tx_skb_tid(sdata, skb, tid);
|
|
|
}
|
|
|
EXPORT_SYMBOL(ieee80211_send_bar);
|
|
|
|