|
@@ -2251,29 +2251,30 @@ static void do_process_drv_event(struct i802_bss *bss, int cmd,
|
|
|
|
|
|
switch (cmd) {
|
|
switch (cmd) {
|
|
case NL80211_CMD_TRIGGER_SCAN:
|
|
case NL80211_CMD_TRIGGER_SCAN:
|
|
- wpa_printf(MSG_DEBUG, "nl80211: Scan trigger");
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan trigger");
|
|
break;
|
|
break;
|
|
case NL80211_CMD_START_SCHED_SCAN:
|
|
case NL80211_CMD_START_SCHED_SCAN:
|
|
- wpa_printf(MSG_DEBUG, "nl80211: Sched scan started");
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan started");
|
|
break;
|
|
break;
|
|
case NL80211_CMD_SCHED_SCAN_STOPPED:
|
|
case NL80211_CMD_SCHED_SCAN_STOPPED:
|
|
- wpa_printf(MSG_DEBUG, "nl80211: Sched scan stopped");
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan stopped");
|
|
wpa_supplicant_event(drv->ctx, EVENT_SCHED_SCAN_STOPPED, NULL);
|
|
wpa_supplicant_event(drv->ctx, EVENT_SCHED_SCAN_STOPPED, NULL);
|
|
break;
|
|
break;
|
|
case NL80211_CMD_NEW_SCAN_RESULTS:
|
|
case NL80211_CMD_NEW_SCAN_RESULTS:
|
|
- wpa_printf(MSG_DEBUG, "nl80211: New scan results available");
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG,
|
|
|
|
+ "nl80211: New scan results available");
|
|
drv->scan_complete_events = 1;
|
|
drv->scan_complete_events = 1;
|
|
eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
|
|
eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
|
|
drv->ctx);
|
|
drv->ctx);
|
|
send_scan_event(drv, 0, tb);
|
|
send_scan_event(drv, 0, tb);
|
|
break;
|
|
break;
|
|
case NL80211_CMD_SCHED_SCAN_RESULTS:
|
|
case NL80211_CMD_SCHED_SCAN_RESULTS:
|
|
- wpa_printf(MSG_DEBUG,
|
|
|
|
- "nl80211: New sched scan results available");
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG,
|
|
|
|
+ "nl80211: New sched scan results available");
|
|
send_scan_event(drv, 0, tb);
|
|
send_scan_event(drv, 0, tb);
|
|
break;
|
|
break;
|
|
case NL80211_CMD_SCAN_ABORTED:
|
|
case NL80211_CMD_SCAN_ABORTED:
|
|
- wpa_printf(MSG_DEBUG, "nl80211: Scan aborted");
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan aborted");
|
|
/*
|
|
/*
|
|
* Need to indicate that scan results are available in order
|
|
* Need to indicate that scan results are available in order
|
|
* not to make wpa_supplicant stop its scanning.
|
|
* not to make wpa_supplicant stop its scanning.
|
|
@@ -2362,8 +2363,8 @@ static void do_process_drv_event(struct i802_bss *bss, int cmd,
|
|
mlme_event_ft_event(drv, tb);
|
|
mlme_event_ft_event(drv, tb);
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
- wpa_printf(MSG_DEBUG, "nl80211: Ignored unknown event "
|
|
|
|
- "(cmd=%d)", cmd);
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Ignored unknown event "
|
|
|
|
+ "(cmd=%d)", cmd);
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -3847,6 +3848,7 @@ static int wpa_driver_nl80211_scan(struct i802_bss *bss,
|
|
int ret = -1, timeout;
|
|
int ret = -1, timeout;
|
|
struct nl_msg *msg, *rates = NULL;
|
|
struct nl_msg *msg, *rates = NULL;
|
|
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: scan request");
|
|
drv->scan_for_auth = 0;
|
|
drv->scan_for_auth = 0;
|
|
|
|
|
|
msg = nl80211_scan_common(drv, NL80211_CMD_TRIGGER_SCAN, params);
|
|
msg = nl80211_scan_common(drv, NL80211_CMD_TRIGGER_SCAN, params);
|
|
@@ -3948,6 +3950,8 @@ static int wpa_driver_nl80211_sched_scan(void *priv,
|
|
struct nl_msg *match_set_rssi = NULL;
|
|
struct nl_msg *match_set_rssi = NULL;
|
|
size_t i;
|
|
size_t i;
|
|
|
|
|
|
|
|
+ wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: sched_scan request");
|
|
|
|
+
|
|
#ifdef ANDROID
|
|
#ifdef ANDROID
|
|
if (!drv->capa.sched_scan_supported)
|
|
if (!drv->capa.sched_scan_supported)
|
|
return android_pno_start(bss, params);
|
|
return android_pno_start(bss, params);
|