Browse Source

qcacld-3.0: Call undo acs as part of deinit adapter

As part of SSR, hdd stop adapter is called which in
turn calls undo acs which frees the sap channel lists.
Now if SAP was already on, and then SSR happens then this
channel list would be freed.
After SSR the SAP would again be restarted.
Now if the driver gets an LTE-coex event from the FW,
there would be no channel-list left in the ACS list, as
it would freed, so there would be no suitable channel
for SAP restart leading to SAP stuck on an unsafe
channel which impact LTE throughput.

Fix is to call undo acs as part of deinit adapter which
would ensure that interface down has happened.

Change-Id: I5bf7bfcc20ccc686792b6b1df5d42b03288f7766
CRs-Fixed: 2650261
gaurank kathpalia 5 years ago
parent
commit
bafe011f2c
2 changed files with 1 additions and 1 deletions
  1. 1 0
      core/hdd/src/wlan_hdd_hostapd.c
  2. 0 1
      core/hdd/src/wlan_hdd_main.c

+ 1 - 0
core/hdd/src/wlan_hdd_hostapd.c

@@ -292,6 +292,7 @@ static int hdd_hostapd_deinit_sap_session(struct hdd_adapter *adapter)
 		return 0;
 	}
 
+	wlan_hdd_undo_acs(adapter);
 	if (!QDF_IS_STATUS_SUCCESS(sap_deinit_ctx(sap_ctx))) {
 		hdd_err("Error stopping the sap session");
 		status = -EINVAL;

+ 0 - 1
core/hdd/src/wlan_hdd_main.c

@@ -6448,7 +6448,6 @@ QDF_STATUS hdd_stop_adapter(struct hdd_context *hdd_ctx,
 				&adapter->acs_complete_event,
 				ACS_COMPLETE_TIMEOUT);
 		}
-		wlan_hdd_undo_acs(adapter);
 
 		if (adapter->device_mode == QDF_P2P_GO_MODE)
 			wlan_hdd_cleanup_remain_on_channel_ctx(adapter);