diff options
author | 2025-03-18 13:50:08 +0100 | |
---|---|---|
committer | 2025-03-18 14:52:11 +0100 | |
commit | cd0b9da682cfe3b595b1d8195e6bfe8acc76e2c3 (patch) | |
tree | 2c6ddbfcc5fe6173ba51e0ab7113ffe6f5ea3747 /net/wireless | |
parent | wifi: iwlwifi: dvm: Avoid -Wflex-array-member-not-at-end warnings (diff) | |
download | linux-rng-cd0b9da682cfe3b595b1d8195e6bfe8acc76e2c3.tar.xz linux-rng-cd0b9da682cfe3b595b1d8195e6bfe8acc76e2c3.zip |
wifi: nl80211: re-enable multi-link reconfiguration
With the recent fixes, we can re-enable multi-link
reconfiguration. Also add a CMD() entry to allow
userspace discovery for it.
Link: https://patch.msgid.link/20250318135009.a95c43837a0f.Ic6ed3d184e5be8ba47c6affa7271daaf824fd823@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/nl80211.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 1a9fc403d50d..f039a7d0d6f7 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -2773,6 +2773,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev, CMD(update_ft_ies, UPDATE_FT_IES); if (rdev->wiphy.sar_capa) CMD(set_sar_specs, SET_SAR_SPECS); + CMD(assoc_ml_reconf, ASSOC_MLO_RECONF); } #undef CMD @@ -16557,7 +16558,7 @@ static int nl80211_assoc_ml_reconf(struct sk_buff *skb, struct genl_info *info) req.ext_mld_capa_ops = nla_get_u16(info->attrs[NL80211_ATTR_ASSOC_MLD_EXT_CAPA_OPS]); - err = -EOPNOTSUPP; + err = cfg80211_assoc_ml_reconf(rdev, dev, &req); out: for (link_id = 0; link_id < ARRAY_SIZE(req.add_links); link_id++) |