Skip to content

Commit 81d0fd1

Browse files
committed
wifi: nl80211: disable multi-link reconfiguration
JIRA: https://issues.redhat.com/browse/RHEL-79791 commit 1f860eb Author: Johannes Berg <johannes.berg@intel.com> Date: Mon Mar 3 11:05:36 2025 +0100 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> Signed-off-by: Jose Ignacio Tornos Martinez <jtornosm@redhat.com>
1 parent e3c1594 commit 81d0fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/wireless/nl80211.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16552,7 +16552,7 @@ static int nl80211_assoc_ml_reconf(struct sk_buff *skb, struct genl_info *info)
1655216552
goto out;
1655316553
}
1655416554

16555-
err = cfg80211_assoc_ml_reconf(rdev, dev, links, rem_links);
16555+
err = -EOPNOTSUPP;
1655616556

1655716557
out:
1655816558
for (link_id = 0; link_id < ARRAY_SIZE(links); link_id++)

0 commit comments

Comments
 (0)