diff options
author | 2025-03-03 11:05:36 +0100 | |
---|---|---|
committer | 2025-03-04 12:50:25 +0100 | |
commit | 1f860eb4cdda634589d75e78ff586d5dff20b8af (patch) | |
tree | da26fa385ceb157df5f0099f4eb74fe2388b7b3a /net/wireless | |
parent | wifi: cfg80211: regulatory: improve invalid hints checking (diff) | |
download | linux-rng-1f860eb4cdda634589d75e78ff586d5dff20b8af.tar.xz linux-rng-1f860eb4cdda634589d75e78ff586d5dff20b8af.zip |
wifi: nl80211: disable multi-link reconfiguration
Both the APIs in cfg80211 and the implementation in mac80211
aren't really ready yet, we have a large number of fixes. In
addition, it's not possible right now to discover support for
this feature from userspace. Disable it for now, there's no
rush.
Link: https://patch.msgid.link/20250303110538.fbeef42a5687.Iab122c22137e5675ebd99f5c031e30c0e5c7af2e@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/nl80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index fdb2aac951d1..e87267fbb442 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -16534,7 +16534,7 @@ static int nl80211_assoc_ml_reconf(struct sk_buff *skb, struct genl_info *info) goto out; } - err = cfg80211_assoc_ml_reconf(rdev, dev, links, rem_links); + err = -EOPNOTSUPP; out: for (link_id = 0; link_id < ARRAY_SIZE(links); link_id++) |