diff options
author | Aditya Kumar Singh <quic_adisi@quicinc.com> | 2024-02-05 21:59:51 +0530 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2024-02-12 21:13:57 +0100 |
commit | ec67d6e0d491d2a2df270ddcb7aa44db0984e11c (patch) | |
tree | cd99e2a8cf8490c1f82f5fc48bcf419abaf0721a /net/mac80211/iface.c | |
parent | f6ca96aa51a4ae1b3a416fbe85acdf1197c405a6 (diff) | |
download | linux-stable-ec67d6e0d491d2a2df270ddcb7aa44db0984e11c.tar.gz linux-stable-ec67d6e0d491d2a2df270ddcb7aa44db0984e11c.tar.bz2 linux-stable-ec67d6e0d491d2a2df270ddcb7aa44db0984e11c.zip |
wifi: mac80211: flush only stations using requests links
Whenever sta_flush() function is invoked, all STAs present in that
interface are flushed. In case of MLO, it is desirable to only flush such
STAs that are at least using a given link id as one of their links.
Add support for this by making change in the __sta_info_flush API argument
to accept a link ID. And then, only if the STA is using the given link as
one of its links, it would be flushed.
Signed-off-by: Aditya Kumar Singh <quic_adisi@quicinc.com>
Link: https://msgid.link/20240205162952.1697646-3-quic_adisi@quicinc.com
[reword commit message, in particular this isn't about "active" links]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/iface.c')
-rw-r--r-- | net/mac80211/iface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c index 227c8dc3fbe5..b75b83a5142b 100644 --- a/net/mac80211/iface.c +++ b/net/mac80211/iface.c @@ -511,7 +511,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, bool going_do * would have removed them, but in other modes there shouldn't * be any stations. */ - flushed = sta_info_flush(sdata); + flushed = sta_info_flush(sdata, -1); WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP_VLAN && flushed > 0); /* don't count this interface for allmulti while it is down */ |