From: Jouni Malinen Date: Thu, 26 Nov 2015 23:09:42 +0000 (+0200) Subject: Abort ongoing scans on FLUSH command X-Git-Tag: hostap_2_6~1320 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53401e919eef68d9ac74d0044e4dba8764c03235;p=thirdparty%2Fhostap.git Abort ongoing scans on FLUSH command This may speed up some hwsim test case sequencies by avoiding a wait for a scan at the end of a test case to complete. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index cfbc2252c..7b45a3a71 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -6862,6 +6862,8 @@ static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s) wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state"); + wpas_abort_ongoing_scan(wpa_s); + #ifdef CONFIG_P2P wpas_p2p_cancel(p2p_wpa_s); p2p_ctrl_flush(p2p_wpa_s);