|
@@ -99,6 +99,7 @@
|
|
|
#include "wlan_if_mgr_ucfg_api.h"
|
|
|
#include "wlan_if_mgr_public_struct.h"
|
|
|
#endif
|
|
|
+#include "wlan_hdd_bootup_marker.h"
|
|
|
|
|
|
#define ACS_SCAN_EXPIRY_TIMEOUT_S 4
|
|
|
|
|
@@ -2283,6 +2284,8 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
|
|
|
if (eSAP_STATUS_FAILURE == event->status) {
|
|
|
hdd_info("assoc failure: " QDF_MAC_ADDR_FMT,
|
|
|
QDF_MAC_ADDR_REF(wrqu.addr.sa_data));
|
|
|
+ hdd_place_marker(adapter, "CLIENT ASSOC FAILURE",
|
|
|
+ wrqu.addr.sa_data);
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -2293,6 +2296,8 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
|
|
|
&event->staMac, QDF_MAC_ADDR_SIZE);
|
|
|
hdd_info("associated " QDF_MAC_ADDR_FMT,
|
|
|
QDF_MAC_ADDR_REF(wrqu.addr.sa_data));
|
|
|
+ hdd_place_marker(adapter, "CLIENT ASSOCIATED",
|
|
|
+ wrqu.addr.sa_data);
|
|
|
we_event = IWEVREGISTERED;
|
|
|
|
|
|
if ((eCSR_ENCRYPT_TYPE_NONE == ap_ctx->encryption_type) ||
|
|
@@ -2441,7 +2446,8 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
|
|
|
}
|
|
|
hdd_nofl_info("SAP disassociated " QDF_MAC_ADDR_FMT,
|
|
|
QDF_MAC_ADDR_REF(wrqu.addr.sa_data));
|
|
|
-
|
|
|
+ hdd_place_marker(adapter, "CLIENT DISASSOCIATED FROM SAP",
|
|
|
+ wrqu.addr.sa_data);
|
|
|
qdf_status = qdf_event_set(&hostapd_state->qdf_sta_disassoc_event);
|
|
|
if (!QDF_IS_STATUS_SUCCESS(qdf_status))
|
|
|
hdd_err("Station Deauth event Set failed");
|
|
@@ -3106,6 +3112,7 @@ int hdd_softap_set_channel_change(struct net_device *dev, int target_chan_freq,
|
|
|
|
|
|
strict = is_p2p_go_session;
|
|
|
strict = strict || forced;
|
|
|
+ hdd_place_marker(adapter, "CHANNEL CHANGE", NULL);
|
|
|
status = wlansap_set_channel_change_with_csa(
|
|
|
WLAN_HDD_GET_SAP_CTX_PTR(adapter),
|
|
|
target_chan_freq,
|
|
@@ -5943,7 +5950,7 @@ static int __wlan_hdd_cfg80211_stop_ap(struct wiphy *wiphy,
|
|
|
{
|
|
|
struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
|
|
struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
|
|
|
- QDF_STATUS status;
|
|
|
+ QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
|
|
|
tSirUpdateIE update_ie;
|
|
|
int ret;
|
|
@@ -6025,6 +6032,7 @@ static int __wlan_hdd_cfg80211_stop_ap(struct wiphy *wiphy,
|
|
|
struct hdd_hostapd_state *hostapd_state =
|
|
|
WLAN_HDD_GET_HOSTAP_STATE_PTR(adapter);
|
|
|
|
|
|
+ hdd_place_marker(adapter, "TRY TO STOP", NULL);
|
|
|
qdf_event_reset(&hostapd_state->qdf_stop_bss_event);
|
|
|
status = wlansap_stop_bss(WLAN_HDD_GET_SAP_CTX_PTR(adapter));
|
|
|
if (QDF_IS_STATUS_SUCCESS(status)) {
|
|
@@ -6035,6 +6043,8 @@ static int __wlan_hdd_cfg80211_stop_ap(struct wiphy *wiphy,
|
|
|
|
|
|
if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
|
|
|
hdd_err("qdf wait for single_event failed!!");
|
|
|
+ hdd_place_marker(adapter, "STOP with FAILURE",
|
|
|
+ NULL);
|
|
|
hdd_sap_indicate_disconnect_for_sta(adapter);
|
|
|
QDF_ASSERT(0);
|
|
|
}
|
|
@@ -6124,6 +6134,10 @@ exit:
|
|
|
qdf_mem_free(adapter->session.ap.beacon);
|
|
|
adapter->session.ap.beacon = NULL;
|
|
|
}
|
|
|
+ if (QDF_IS_STATUS_SUCCESS(status))
|
|
|
+ hdd_place_marker(adapter, "STOP with SUCCESS", NULL);
|
|
|
+ else
|
|
|
+ hdd_place_marker(adapter, "STOP with FAILURE", NULL);
|
|
|
|
|
|
hdd_exit();
|
|
|
|
|
@@ -6768,6 +6782,7 @@ static int __wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
|
|
|
adapter->session.ap.sap_config.ch_width_orig =
|
|
|
chandef->width;
|
|
|
|
|
|
+ hdd_place_marker(adapter, "TRY TO START", NULL);
|
|
|
status =
|
|
|
wlan_hdd_cfg80211_start_bss(adapter,
|
|
|
¶ms->beacon,
|
|
@@ -6811,11 +6826,14 @@ static int __wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
|
|
|
goto success;
|
|
|
|
|
|
err_start_bss:
|
|
|
+ hdd_place_marker(adapter, "START with FAILURE", NULL);
|
|
|
if (adapter->session.ap.beacon)
|
|
|
qdf_mem_free(adapter->session.ap.beacon);
|
|
|
adapter->session.ap.beacon = NULL;
|
|
|
|
|
|
success:
|
|
|
+ if (QDF_IS_STATUS_SUCCESS(status))
|
|
|
+ hdd_place_marker(adapter, "START with SUCCESS", NULL);
|
|
|
hdd_exit();
|
|
|
return status;
|
|
|
}
|