diff options
author | Johannes Berg <johannes.berg@intel.com> | 2022-06-15 12:50:00 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-08-17 16:14:32 +0300 |
commit | cf8d8810f2e22be6f8aa5bfb4fdc44ef265f370f (patch) | |
tree | 4e6b606c1c6fe774d62793abb5ac69cf7d535ada /net/mac80211 | |
parent | b66ebac40f64336ae2d053883bee85261060bd27 (diff) | |
download | linux-cf8d8810f2e22be6f8aa5bfb4fdc44ef265f370f.tar.xz |
wifi: mac80211: set STA deflink addresses
[ Upstream commit 630c7e4621763220d23789fbb036e0cf227e0b22 ]
We should set the STA deflink addresses in case no
link is really added.
Fixes: 046d2e7c50e3 ("mac80211: prepare sta handling for MLO support")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/sta_info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index e04a0905e941..8b192cf7d446 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c @@ -373,6 +373,8 @@ struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, memcpy(sta->addr, addr, ETH_ALEN); memcpy(sta->sta.addr, addr, ETH_ALEN); + memcpy(sta->deflink.addr, addr, ETH_ALEN); + memcpy(sta->sta.deflink.addr, addr, ETH_ALEN); sta->sta.max_rx_aggregation_subframes = local->hw.max_rx_aggregation_subframes; |