]> git.baikalelectronics.ru Git - kernel.git/commit
iwlwifi: mvm: don't set the drain bit when we flush the AP station
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Thu, 2 Jan 2014 08:01:46 +0000 (10:01 +0200)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Mon, 13 Jan 2014 16:42:54 +0000 (18:42 +0200)
commit33d5c4b1c195c2a824f2560663dbf5663c8ff8aa
treeb5f3586b67a025c890f651e4b68d8e43edead951
parent50f4a853dd8ed3c8b5f5e540f8173363e1d968cc
iwlwifi: mvm: don't set the drain bit when we flush the AP station

When we disassociate in managed mode, we flush the queues
after mac80211 has already removed the station.
During that time, the pointer to ieee80211_sta to the
fw_id_to_mac_id map is -EINVAL. In that case we should not
set the station as being drained when the last Tx of this
station has exited the shared Tx queue since we are
flushing all the queues anyway.
The draining logic is meant to be used in GO / AP mode only.
In GO / AP mode, we set -EBUSY in the fw_id_to_mac_id map.

This is why testing the ieee80211_sta pointer in the
fw_id_to_mac_id map with IS_ERR isn't enough to set the
station as draining, we need to check that it is -EBUSY.

The only impact of the bug was a print:

Drained sta 1, but it is internal?

Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/iwlwifi/mvm/tx.c