mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 04:23:35 +02:00
wifi: rtl8xxxu: support multiple interfaces in configure_filter()
As we only want to support AP mode/sending beacons on port 0, change from priv->vif to priv->vifs[0] in the check for AP mode. Additionally, if we are in AP mode, don't filter RX beacon and probe response frames to still allow working STATION mode on the other interface. Signed-off-by: Martin Kaistra <martin.kaistra@linutronix.de> Reviewed-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://msgid.link/20231222101442.626837-13-martin.kaistra@linutronix.de
This commit is contained in:
parent
05b22e9b7d
commit
6b76638287
|
|
@ -6794,8 +6794,8 @@ static void rtl8xxxu_configure_filter(struct ieee80211_hw *hw,
|
|||
else
|
||||
rcr |= RCR_CHECK_BSSID_BEACON | RCR_CHECK_BSSID_MATCH;
|
||||
|
||||
if (priv->vif && priv->vif->type == NL80211_IFTYPE_AP)
|
||||
rcr &= ~RCR_CHECK_BSSID_MATCH;
|
||||
if (priv->vifs[0] && priv->vifs[0]->type == NL80211_IFTYPE_AP)
|
||||
rcr &= ~(RCR_CHECK_BSSID_MATCH | RCR_CHECK_BSSID_BEACON);
|
||||
|
||||
if (*total_flags & FIF_CONTROL)
|
||||
rcr |= RCR_ACCEPT_CTRL_FRAME;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user