diff options
author | Johannes Berg <johannes.berg@intel.com> | 2022-09-06 22:37:03 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-10-07 15:24:04 +0200 |
commit | 1e0f8cc96b7162075d2e3b6bef856497884a3ae8 (patch) | |
tree | 8d3d7d6a10b0502d1364297ace6bd96b0ad79665 /net/wireless | |
parent | f7ee304111584b1822c960b0b5e7ebbe3d4e406b (diff) | |
download | linux-stable-1e0f8cc96b7162075d2e3b6bef856497884a3ae8.tar.gz linux-stable-1e0f8cc96b7162075d2e3b6bef856497884a3ae8.tar.bz2 linux-stable-1e0f8cc96b7162075d2e3b6bef856497884a3ae8.zip |
wifi: nl80211: use link ID in NL80211_CMD_SET_BSS
We clearly need the link ID here, to know the right BSS
to configure. Use/require it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/nl80211.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index ad7393cd3d18..1d0277758d0e 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -7780,6 +7780,7 @@ static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info) int err; memset(¶ms, 0, sizeof(params)); + params.link_id = nl80211_link_id_or_invalid(info->attrs); /* default to not changing parameters */ params.use_cts_prot = -1; params.use_short_preamble = -1; @@ -16564,7 +16565,8 @@ static const struct genl_small_ops nl80211_small_ops[] = { .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, .doit = nl80211_set_bss, .flags = GENL_UNS_ADMIN_PERM, - .internal_flags = IFLAGS(NL80211_FLAG_NEED_NETDEV_UP), + .internal_flags = IFLAGS(NL80211_FLAG_NEED_NETDEV_UP | + NL80211_FLAG_MLO_VALID_LINK_ID), }, { .cmd = NL80211_CMD_GET_REG, |