diff options
author | Johannes Berg <johannes.berg@intel.com> | 2017-11-21 16:46:08 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2017-11-27 13:23:20 +0300 |
commit | 7b6ddeaf27eca72795ceeae2f0f347db1b5f9a30 (patch) | |
tree | cc562ff138989b1e20f0fb19b2e2be1a0aaf90c9 /drivers/net/wireless/ath/ath9k | |
parent | 01a95b2141e337dea15ad48e60a35c72a9b10205 (diff) | |
download | linux-7b6ddeaf27eca72795ceeae2f0f347db1b5f9a30.tar.xz |
mac80211: use QoS NDP for AP probing
When connected to a QoS/WMM AP, mac80211 should use a QoS NDP
for probing it, instead of a regular non-QoS one, fix this.
Change all the drivers to *not* allow QoS NDP for now, even
though it looks like most of them should be OK with that.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/channel.c b/drivers/net/wireless/ath/ath9k/channel.c index dfb26f03c1a2..1b05b5d7a038 100644 --- a/drivers/net/wireless/ath/ath9k/channel.c +++ b/drivers/net/wireless/ath/ath9k/channel.c @@ -1113,7 +1113,7 @@ ath_chanctx_send_vif_ps_frame(struct ath_softc *sc, struct ath_vif *avp, if (!avp->assoc) return false; - skb = ieee80211_nullfunc_get(sc->hw, vif); + skb = ieee80211_nullfunc_get(sc->hw, vif, false); if (!skb) return false; |