diff mbox series

wpa_supplicant: Skip scan before starting a BSS in AP mode

Message ID 20230420213640.848491-1-jintaolin@chromium.org
State Accepted
Headers show
Series wpa_supplicant: Skip scan before starting a BSS in AP mode | expand

Commit Message

Jintao Lin April 20, 2023, 9:36 p.m. UTC
When starting a new BSS as AP mode, the network configs have been passed
in from the BSS config. There is no need to scan before creating a new
BSS. Reuse connect_without_scan structure member to bypass scan when the
mode is WPAS_MODE_AP.

Signed-off-by: Jintao Lin <jintaolin@chromium.org>
---
 wpa_supplicant/wpa_supplicant.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Jouni Malinen April 28, 2023, 6:18 p.m. UTC | #1
On Thu, Apr 20, 2023 at 09:36:40PM +0000, Jintao Lin wrote:
> When starting a new BSS as AP mode, the network configs have been passed
> in from the BSS config. There is no need to scan before creating a new
> BSS. Reuse connect_without_scan structure member to bypass scan when the
> mode is WPAS_MODE_AP.

Thanks, applied.
diff mbox series

Patch

diff --git a/wpa_supplicant/wpa_supplicant.c b/wpa_supplicant/wpa_supplicant.c
index 51a7874d8..4ad04c9f9 100644
--- a/wpa_supplicant/wpa_supplicant.c
+++ b/wpa_supplicant/wpa_supplicant.c
@@ -4709,7 +4709,8 @@  void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
 		wpa_s->current_ssid = ssid;
 		eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
 		wpa_s->connect_without_scan =
-			(ssid->mode == WPAS_MODE_MESH) ? ssid : NULL;
+			(ssid->mode == WPAS_MODE_MESH || ssid->mode == WPAS_MODE_AP) ?
+			ssid : NULL;
 
 		/*
 		 * Don't optimize next scan freqs since a new ESS has been