diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-10-22 12:04:03 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-11-16 19:40:57 (GMT) |
commit | 83b9d426e07a3ec0004c5e8203068b625a202d75 (patch) | |
tree | 8a14257d5f805c84fcf375f794b93727da9f6579 /wpa_supplicant/wmm_ac.c | |
parent | 8506ea6f17e6389bfcdbcbfd93baa34a3d10f416 (diff) | |
download | hostap-83b9d426e07a3ec0004c5e8203068b625a202d75.zip hostap-83b9d426e07a3ec0004c5e8203068b625a202d75.tar.gz hostap-83b9d426e07a3ec0004c5e8203068b625a202d75.tar.bz2 |
WMM AC: Notify driver before sending DelTS
Switch the stop and sending DelTS to avoid sending data packets
for the session after the DelTS, which is otherwise possible.
This also helps the mac80211 implementation as it requires stopping the
traffic flow before sending the DelTS as it may modify the AC parameters
for the affected queue, and that may in turn affect management frames.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'wpa_supplicant/wmm_ac.c')
-rw-r--r-- | wpa_supplicant/wmm_ac.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/wpa_supplicant/wmm_ac.c b/wpa_supplicant/wmm_ac.c index b26b8aa..7d39c20 100644 --- a/wpa_supplicant/wmm_ac.c +++ b/wpa_supplicant/wmm_ac.c @@ -556,7 +556,7 @@ void wmm_ac_notify_disassoc(struct wpa_supplicant *wpa_s) int wpas_wmm_ac_delts(struct wpa_supplicant *wpa_s, u8 tsid) { - struct wmm_tspec_element *tspec; + struct wmm_tspec_element tspec; int ac; enum ts_dir_idx dir; @@ -572,11 +572,12 @@ int wpas_wmm_ac_delts(struct wpa_supplicant *wpa_s, u8 tsid) return -1; } - tspec = wpa_s->tspecs[ac][dir]; - wmm_ac_send_delts(wpa_s, tspec, wpa_s->bssid); + tspec = *wpa_s->tspecs[ac][dir]; wmm_ac_del_ts_idx(wpa_s, ac, dir); + wmm_ac_send_delts(wpa_s, &tspec, wpa_s->bssid); + return 0; } |