diff mbox series

[wireless] wifi: nl80211: disable multi-link reconfiguration

Message ID 20250303110104.17744afe6975.Iab122c22137e5675ebd99f5c031e30c0e5c7af2e@changeid (mailing list archive)
State Superseded
Delegated to: Johannes Berg
Headers show
Series [wireless] wifi: nl80211: disable multi-link reconfiguration | expand

Checks

Context Check Description
jmberg/fixes_present fail Series targets non-next tree, but doesn't contain any Fixes tags
jmberg/series_format success Single patches do not need cover letters
jmberg/tree_selection success Clearly marked for wireless
jmberg/ynl success Generated files up to date; no warnings/errors; no diff in generated;
jmberg/build_clang fail Errors and warnings before: 1 this patch: 8
jmberg/build_32bit fail Errors and warnings before: 0 this patch: 7
jmberg/build_allmodconfig_warn fail Errors and warnings before: 0 this patch: 7
jmberg/build_clang_rust success No Rust files in patch. Skipping build
jmberg/build_tools success No tools touched, skip
jmberg/check_selftest success No net selftest shell script
jmberg/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
jmberg/deprecated_api success None detected
jmberg/header_inline success No static functions without inline keyword in header files
jmberg/kdoc success Errors and warnings before: 0 this patch: 0
jmberg/source_inline success Was 0 now: 0
jmberg/verify_fixes success No Fixes tag
jmberg/verify_signedoff success Signed-off-by tag matches author and committer

Commit Message

Johannes Berg March 3, 2025, 10 a.m. UTC
From: Johannes Berg <johannes.berg@intel.com>

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.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
 net/wireless/nl80211.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index fdb2aac951d1..27d51aa5cdff 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 = -ENOPNOTSUPP;
 
 out:
 	for (link_id = 0; link_id < ARRAY_SIZE(links); link_id++)