rtw89: change idle mode condition during hw_scan
authorPo Hao Huang <phhuang@realtek.com>
Fri, 1 Apr 2022 05:50:40 +0000 (13:50 +0800)
committerKalle Valo <kvalo@kernel.org>
Wed, 6 Apr 2022 08:56:33 +0000 (11:56 +0300)
Previously we only consider single interface's status, idle mode
behavior could be unexpected when multiple interfaces is active.
Change to enter/leave idle mode by mac80211's configuration state.

Signed-off-by: Po Hao Huang <phhuang@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220401055043.12512-2-pkshih@realtek.com
drivers/net/wireless/realtek/rtw89/core.c

index f540ee3..89506da 100644 (file)
@@ -1940,9 +1940,9 @@ static void rtw89_ips_work(struct work_struct *work)
 {
        struct rtw89_dev *rtwdev = container_of(work, struct rtw89_dev,
                                                ips_work);
-
        mutex_lock(&rtwdev->mutex);
-       rtw89_enter_ips(rtwdev);
+       if (rtwdev->hw->conf.flags & IEEE80211_CONF_IDLE)
+               rtw89_enter_ips(rtwdev);
        mutex_unlock(&rtwdev->mutex);
 }
 
@@ -2848,7 +2848,7 @@ void rtw89_core_scan_start(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif,
 
        rtwdev->scanning = true;
        rtw89_leave_lps(rtwdev);
-       if (hw_scan && rtwvif->net_type == RTW89_NET_TYPE_NO_LINK)
+       if (hw_scan && (rtwdev->hw->conf.flags & IEEE80211_CONF_IDLE))
                rtw89_leave_ips(rtwdev);
 
        ether_addr_copy(rtwvif->mac_addr, mac_addr);
@@ -2872,7 +2872,7 @@ void rtw89_core_scan_complete(struct rtw89_dev *rtwdev,
 
        rtwdev->scanning = false;
        rtwdev->dig.bypass_dig = true;
-       if (hw_scan && rtwvif->net_type == RTW89_NET_TYPE_NO_LINK)
+       if (hw_scan && (rtwdev->hw->conf.flags & IEEE80211_CONF_IDLE))
                ieee80211_queue_work(rtwdev->hw, &rtwdev->ips_work);
 }