diff options
author | Johannes Berg <johannes.berg@intel.com> | 2017-11-21 14:46:08 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2017-11-27 11:23:20 +0100 |
commit | 7b6ddeaf27eca72795ceeae2f0f347db1b5f9a30 (patch) | |
tree | cc562ff138989b1e20f0fb19b2e2be1a0aaf90c9 /net/mac80211/mlme.c | |
parent | 01a95b2141e337dea15ad48e60a35c72a9b10205 (diff) | |
download | linux-7b6ddeaf27eca72795ceeae2f0f347db1b5f9a30.tar.gz linux-7b6ddeaf27eca72795ceeae2f0f347db1b5f9a30.tar.bz2 linux-7b6ddeaf27eca72795ceeae2f0f347db1b5f9a30.zip |
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 'net/mac80211/mlme.c')
-rw-r--r-- | net/mac80211/mlme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 04460440d731..c244691deab9 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -895,7 +895,7 @@ void ieee80211_send_nullfunc(struct ieee80211_local *local, struct ieee80211_hdr_3addr *nullfunc; struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; - skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif); + skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif, true); if (!skb) return; |