|
@@ -2190,6 +2190,12 @@ static int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
int rc;
|
|
|
wlan_net_dev_ref_dbgid dbgid = NET_DEV_HOLD_CFG80211_SUSPEND_WLAN;
|
|
|
+ struct hdd_hostapd_state *hapd_state;
|
|
|
+ struct csr_del_sta_params params = {
|
|
|
+ .peerMacAddr = QDF_MAC_ADDR_BCAST_INIT,
|
|
|
+ .reason_code = REASON_DEAUTH_NETWORK_LEAVING,
|
|
|
+ .subtype = SIR_MAC_MGMT_DEAUTH,
|
|
|
+ };
|
|
|
|
|
|
hdd_enter();
|
|
|
|
|
@@ -2252,6 +2258,14 @@ static int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
|
|
|
hdd_adapter_dev_put_debug(next_adapter,
|
|
|
dbgid);
|
|
|
return -EOPNOTSUPP;
|
|
|
+ } else if (ucfg_pmo_get_disconnect_sap_tdls_in_wow(
|
|
|
+ hdd_ctx->psoc)) {
|
|
|
+ hapd_state =
|
|
|
+ WLAN_HDD_GET_HOSTAP_STATE_PTR(adapter);
|
|
|
+ if (hapd_state)
|
|
|
+ hdd_softap_deauth_all_sta(adapter,
|
|
|
+ hapd_state,
|
|
|
+ ¶ms);
|
|
|
}
|
|
|
} else if (QDF_P2P_GO_MODE == adapter->device_mode) {
|
|
|
if (!ucfg_pmo_get_enable_sap_suspend(
|
|
@@ -2265,7 +2279,19 @@ static int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
|
|
|
hdd_adapter_dev_put_debug(next_adapter,
|
|
|
dbgid);
|
|
|
return -EOPNOTSUPP;
|
|
|
+ } else if (ucfg_pmo_get_disconnect_sap_tdls_in_wow(
|
|
|
+ hdd_ctx->psoc)) {
|
|
|
+ hapd_state =
|
|
|
+ WLAN_HDD_GET_HOSTAP_STATE_PTR(adapter);
|
|
|
+ if (hapd_state)
|
|
|
+ hdd_softap_deauth_all_sta(adapter,
|
|
|
+ hapd_state,
|
|
|
+ ¶ms);
|
|
|
}
|
|
|
+ } else if (QDF_TDLS_MODE == adapter->device_mode) {
|
|
|
+ if (ucfg_pmo_get_disconnect_sap_tdls_in_wow(
|
|
|
+ hdd_ctx->psoc))
|
|
|
+ ucfg_tdls_teardown_links_sync(hdd_ctx->psoc);
|
|
|
}
|
|
|
hdd_adapter_dev_put_debug(adapter, dbgid);
|
|
|
}
|