|
@@ -77,11 +77,8 @@
|
|
|
|
|
|
#include <ol_defines.h>
|
|
|
#include "wlan_pkt_capture_ucfg_api.h"
|
|
|
-
|
|
|
-#ifdef WLAN_FEATURE_INTERFACE_MGR
|
|
|
#include "wlan_if_mgr_ucfg_api.h"
|
|
|
#include "wlan_if_mgr_public_struct.h"
|
|
|
-#endif
|
|
|
#include "wlan_cm_public_struct.h"
|
|
|
#include "osif_cm_util.h"
|
|
|
#include "wlan_hdd_cm_api.h"
|
|
@@ -1801,25 +1798,6 @@ static QDF_STATUS hdd_dis_connect_handler(struct hdd_adapter *adapter,
|
|
|
/* indicate 'disconnect' status to wpa_supplicant... */
|
|
|
hdd_send_association_event(dev, roam_info);
|
|
|
|
|
|
- /*
|
|
|
- * Following code will be cleaned once the interface manager
|
|
|
- * module is enabled.
|
|
|
- */
|
|
|
-#ifndef WLAN_FEATURE_INTERFACE_MGR
|
|
|
- /*
|
|
|
- * Due to audio share glitch with P2P clients due
|
|
|
- * to roam scan on concurrent interface, disable
|
|
|
- * roaming if "p2p_disable_roam" ini is enabled.
|
|
|
- * Re-enable roaming again once the p2p client
|
|
|
- * gets disconnected.
|
|
|
- */
|
|
|
- if (ucfg_p2p_is_roam_config_disabled(hdd_ctx->psoc) &&
|
|
|
- adapter->device_mode == QDF_P2P_CLIENT_MODE) {
|
|
|
- hdd_debug("P2P client disconnected, enable roam");
|
|
|
- wlan_hdd_enable_roaming(adapter, RSO_CONNECT_START);
|
|
|
- }
|
|
|
-#endif
|
|
|
-
|
|
|
/* indicate disconnected event to nl80211 */
|
|
|
/*
|
|
|
* Only send indication to kernel if not initiated
|
|
@@ -1885,19 +1863,6 @@ static QDF_STATUS hdd_dis_connect_handler(struct hdd_adapter *adapter,
|
|
|
hdd_conn_set_connection_state(adapter,
|
|
|
eConnectionState_NotConnected);
|
|
|
|
|
|
- /*
|
|
|
- * Following code will be cleaned once the interface manager
|
|
|
- * module is enabled.
|
|
|
- */
|
|
|
-#ifndef WLAN_FEATURE_INTERFACE_MGR
|
|
|
- policy_mgr_check_concurrent_intf_and_restart_sap(hdd_ctx->psoc);
|
|
|
-#endif
|
|
|
-
|
|
|
- /*
|
|
|
- * Following code will be cleaned once the interface manager
|
|
|
- * module is enabled.
|
|
|
- */
|
|
|
-#ifdef WLAN_FEATURE_INTERFACE_MGR
|
|
|
vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_ID);
|
|
|
if (vdev) {
|
|
|
ucfg_if_mgr_deliver_event(vdev,
|
|
@@ -1905,17 +1870,6 @@ static QDF_STATUS hdd_dis_connect_handler(struct hdd_adapter *adapter,
|
|
|
NULL);
|
|
|
hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_ID);
|
|
|
}
|
|
|
-#else
|
|
|
- if (policy_mgr_is_sta_active_connection_exists(hdd_ctx->psoc) &&
|
|
|
- QDF_STA_MODE == adapter->device_mode) {
|
|
|
- if (mac_handle)
|
|
|
- sme_enable_roaming_on_connected_sta(
|
|
|
- mac_handle,
|
|
|
- adapter->vdev_id);
|
|
|
- policy_mgr_set_pcl_for_connected_vdev(hdd_ctx->psoc,
|
|
|
- adapter->vdev_id, true);
|
|
|
- }
|
|
|
-#endif
|
|
|
|
|
|
__hdd_cm_disconnect_handler_post_user_update(adapter);
|
|
|
/* Unblock anyone waiting for disconnect to complete */
|
|
@@ -2691,9 +2645,7 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
|
|
|
mac_handle_t mac_handle;
|
|
|
uint32_t conn_info_freq;
|
|
|
void *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
-#ifdef WLAN_FEATURE_INTERFACE_MGR
|
|
|
struct if_mgr_event_data *connect_complete;
|
|
|
-#endif
|
|
|
|
|
|
if (!hdd_ctx) {
|
|
|
hdd_err("HDD context is NULL");
|
|
@@ -2741,38 +2693,6 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
|
|
|
hdd_conn_set_connection_state(adapter,
|
|
|
eConnectionState_Associated);
|
|
|
}
|
|
|
- /*
|
|
|
- * Following code will be cleaned once the interface manager
|
|
|
- * module is enabled.
|
|
|
- */
|
|
|
-#ifndef WLAN_FEATURE_INTERFACE_MGR
|
|
|
- /*
|
|
|
- * Due to audio share glitch with P2P clients caused
|
|
|
- * by roam scan on concurrent interface, disable
|
|
|
- * roaming if "p2p_disable_roam" ini is enabled.
|
|
|
- * Donot re-enable roaming again on other STA interface
|
|
|
- * if p2p client connection is active on any vdev.
|
|
|
- */
|
|
|
- if (ucfg_p2p_is_roam_config_disabled(hdd_ctx->psoc) &&
|
|
|
- adapter->device_mode == QDF_P2P_CLIENT_MODE) {
|
|
|
- hdd_debug("p2p cli active keep roam disabled");
|
|
|
- } else {
|
|
|
- /*
|
|
|
- * On successful association. set the vdev PCL for the
|
|
|
- * already existing STA which was connected first
|
|
|
- */
|
|
|
- policy_mgr_set_pcl_for_connected_vdev(hdd_ctx->psoc,
|
|
|
- adapter->vdev_id,
|
|
|
- false);
|
|
|
-
|
|
|
- /*
|
|
|
- * Enable roaming on other STA iface except this one.
|
|
|
- * Firmware dosent support connection on one STA iface
|
|
|
- * while roaming on other STA iface
|
|
|
- */
|
|
|
- wlan_hdd_enable_roaming(adapter, RSO_CONNECT_START);
|
|
|
- }
|
|
|
-#endif
|
|
|
/* Save the connection info from CSR... */
|
|
|
hdd_conn_save_connect_info(adapter, roam_info,
|
|
|
eCSR_BSS_TYPE_INFRASTRUCTURE);
|
|
@@ -3226,7 +3146,6 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
|
|
|
* Following code will be cleaned once the interface manager
|
|
|
* module is enabled.
|
|
|
*/
|
|
|
-#ifdef WLAN_FEATURE_INTERFACE_MGR
|
|
|
connect_complete = qdf_mem_malloc(sizeof(*connect_complete));
|
|
|
if (!connect_complete)
|
|
|
return QDF_STATUS_E_NOMEM;
|
|
@@ -3238,12 +3157,6 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
|
|
|
WLAN_IF_MGR_EV_CONNECT_COMPLETE,
|
|
|
connect_complete);
|
|
|
qdf_mem_free(connect_complete);
|
|
|
-#else
|
|
|
- policy_mgr_check_n_start_opportunistic_timer(hdd_ctx->psoc);
|
|
|
- hdd_debug("check for SAP restart");
|
|
|
- policy_mgr_check_concurrent_intf_and_restart_sap(
|
|
|
- hdd_ctx->psoc);
|
|
|
-#endif
|
|
|
} else {
|
|
|
bool connect_timeout = false;
|
|
|
if (roam_info && roam_info->is_fils_connection &&
|
|
@@ -3440,11 +3353,6 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
|
|
|
|
|
|
if (roam_status == eCSR_ROAM_ASSOCIATION_FAILURE ||
|
|
|
roam_status == eCSR_ROAM_CANCELLED) {
|
|
|
- /*
|
|
|
- * Following code will be cleaned once the interface
|
|
|
- * manager module is enabled.
|
|
|
- */
|
|
|
-#ifdef WLAN_FEATURE_INTERFACE_MGR
|
|
|
connect_complete =
|
|
|
qdf_mem_malloc(sizeof(*connect_complete));
|
|
|
if (!connect_complete)
|
|
@@ -3459,23 +3367,6 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
|
|
|
connect_complete);
|
|
|
qdf_mem_free(connect_complete);
|
|
|
}
|
|
|
-#else
|
|
|
- /* notify connect failure on final failure */
|
|
|
- ucfg_tdls_notify_connect_failure(hdd_ctx->psoc);
|
|
|
- /* do we need to change the HW mode on final failure */
|
|
|
- policy_mgr_check_n_start_opportunistic_timer(
|
|
|
- hdd_ctx->psoc);
|
|
|
-
|
|
|
- /*
|
|
|
- * Enable roaming on other STA iface except this one.
|
|
|
- * Firmware dosent support connection on one STA iface
|
|
|
- * while roaming on other STA iface
|
|
|
- */
|
|
|
- wlan_hdd_enable_roaming(adapter, RSO_CONNECT_START);
|
|
|
- }
|
|
|
-
|
|
|
- policy_mgr_check_concurrent_intf_and_restart_sap(hdd_ctx->psoc);
|
|
|
-#endif
|
|
|
}
|
|
|
|
|
|
hdd_periodic_sta_stats_start(adapter);
|