]> git.baikalelectronics.ru Git - kernel.git/commit
mac80211: Reset MBSSID parameters upon connection
authorManikanta Pubbisetty <quic_mpubbise@quicinc.com>
Thu, 28 Apr 2022 05:27:44 +0000 (10:57 +0530)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 4 May 2022 09:37:46 +0000 (11:37 +0200)
commitfb1fd4586231ae9d56d227e14fe9d33553bded31
treed53b5ef801e04cdada2a92a21d743579a73273be
parentcb3fb83d839379746204462f0709ddc1c4aaa0f7
mac80211: Reset MBSSID parameters upon connection

Currently MBSSID parameters in struct ieee80211_bss_conf
are not reset upon connection. This could be problematic
with some drivers in a scenario where the device first
connects to a non-transmit BSS and then connects to a
transmit BSS of a Multi BSS AP. The MBSSID parameters
which are set after connecting to a non-transmit BSS will
not be reset and the same parameters will be passed on to
the driver during the subsequent connection to a transmit
BSS of a Multi BSS AP.

For example, firmware running on the ath11k device uses the
Multi BSS data for tracking the beacon of a non-transmit BSS
and reports the driver when there is a beacon miss. If we do
not reset the MBSSID parameters during the subsequent
connection to a transmit BSS, then the driver would have
wrong MBSSID data and FW would be looking for an incorrect
BSSID in the MBSSID beacon of a Multi BSS AP and reports
beacon loss leading to an unstable connection.

Reset the MBSSID parameters upon every connection to solve this
problem.

Fixes: 7d7dcb365227 ("mac80211: support multi-bssid")
Signed-off-by: Manikanta Pubbisetty <quic_mpubbise@quicinc.com>
Link: https://lore.kernel.org/r/20220428052744.27040-1-quic_mpubbise@quicinc.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/mlme.c