|
@@ -227,7 +227,7 @@ static void ieee80211_send_addba_resp(struct ieee80211_sub_if_data *sdata, u8 *d
|
|
|
void __ieee80211_start_rx_ba_session(struct sta_info *sta,
|
|
|
u8 dialog_token, u16 timeout,
|
|
|
u16 start_seq_num, u16 ba_policy, u16 tid,
|
|
|
- u16 buf_size, bool tx)
|
|
|
+ u16 buf_size, bool tx, bool auto_seq)
|
|
|
{
|
|
|
struct ieee80211_local *local = sta->sdata->local;
|
|
|
struct tid_ampdu_rx *tid_agg_rx;
|
|
@@ -326,6 +326,7 @@ void __ieee80211_start_rx_ba_session(struct sta_info *sta,
|
|
|
tid_agg_rx->buf_size = buf_size;
|
|
|
tid_agg_rx->timeout = timeout;
|
|
|
tid_agg_rx->stored_mpdu_num = 0;
|
|
|
+ tid_agg_rx->auto_seq = auto_seq;
|
|
|
status = WLAN_STATUS_SUCCESS;
|
|
|
|
|
|
/* activate it for RX */
|
|
@@ -367,7 +368,7 @@ void ieee80211_process_addba_request(struct ieee80211_local *local,
|
|
|
|
|
|
__ieee80211_start_rx_ba_session(sta, dialog_token, timeout,
|
|
|
start_seq_num, ba_policy, tid,
|
|
|
- buf_size, true);
|
|
|
+ buf_size, true, false);
|
|
|
}
|
|
|
|
|
|
void ieee80211_start_rx_ba_session_offl(struct ieee80211_vif *vif,
|