diff options
author | Felix Fietkau <nbd@nbd.name> | 2021-07-02 07:01:11 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2021-07-23 10:34:13 +0200 |
commit | a5d3cbdb09ff1f52cbe040932e06c8b9915c6dad (patch) | |
tree | 7378314f23cd896f29e13f4ca7c5a219b48f1a4e /net/mac80211/ieee80211_i.h | |
parent | 1a7915501ca94a1f10288defe333cd5ade210b63 (diff) | |
download | linux-a5d3cbdb09ff1f52cbe040932e06c8b9915c6dad.tar.bz2 |
mac80211: fix enabling 4-address mode on a sta vif after assoc
Notify the driver about the 4-address mode change and also send a nulldata
packet to the AP to notify it about the change
Fixes: 1ff4e8f2dec8 ("mac80211: notify the driver when a sta uses 4-address mode")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Link: https://lore.kernel.org/r/20210702050111.47546-1-nbd@nbd.name
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 22549b95d1aa..30ce6d2ec7ce 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -2201,6 +2201,8 @@ void ieee80211_dynamic_ps_timer(struct timer_list *t); void ieee80211_send_nullfunc(struct ieee80211_local *local, struct ieee80211_sub_if_data *sdata, bool powersave); +void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local, + struct ieee80211_sub_if_data *sdata); void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata, struct ieee80211_hdr *hdr, bool ack, u16 tx_time); |