OSDN Git Service

wifi: mac80211: recalc chanctx mindef before assigning
authorJohannes Berg <johannes.berg@intel.com>
Thu, 4 May 2023 13:45:04 +0000 (16:45 +0300)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 16 May 2023 17:26:00 +0000 (10:26 -0700)
commit04312de4ced4b152749614e8179f3978a20a992f
treeb68728f813ee12d3e773fbd265e06f8f6d8f6a64
parentb72a455a2409fd94d6d9b4eb51d659a88213243b
wifi: mac80211: recalc chanctx mindef before assigning

When we allocate a new channel context, or find an existing one
that is compatible, we currently assign it to a link before its
mindef is updated. This leads to strange situations, especially
in link switching where you switch to an 80 MHz link and expect
it to be active immediately, but the mindef is still configured
to 20 MHz while assigning.  Also, it's strange that the chandef
passed to the assign method's argument is wider than the one in
the context.

Fix this by calculating the mindef with the new link considered
before calling the driver.

In particular, this fixes an iwlwifi problem during link switch
where the firmware would assert because the (link) station that
was added for the AP is configured to transmit at a bandwidth
that's wider than the channel context that it's configured on.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230504134511.828474-5-gregory.greenman@intel.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/chan.c