|
@@ -1683,12 +1683,15 @@ int wlan_hdd_sap_cfg_dfs_override(struct hdd_adapter *adapter)
|
|
|
sap_config->acs_cfg.ch_list = qdf_mem_malloc(
|
|
|
sizeof(uint8_t) *
|
|
|
con_sap_config->acs_cfg.ch_list_count);
|
|
|
- if (!sap_config->acs_cfg.ch_list)
|
|
|
+ if (!sap_config->acs_cfg.ch_list) {
|
|
|
+ sap_config->acs_cfg.ch_list_count = 0;
|
|
|
return -ENOMEM;
|
|
|
-
|
|
|
+ }
|
|
|
qdf_mem_copy(sap_config->acs_cfg.ch_list,
|
|
|
con_sap_config->acs_cfg.ch_list,
|
|
|
con_sap_config->acs_cfg.ch_list_count);
|
|
|
+ sap_config->acs_cfg.ch_list_count =
|
|
|
+ con_sap_config->acs_cfg.ch_list_count;
|
|
|
|
|
|
} else {
|
|
|
sap_config->acs_cfg.pri_ch = con_ch;
|
|
@@ -2965,9 +2968,11 @@ void wlan_hdd_undo_acs(struct hdd_adapter *adapter)
|
|
|
if (!adapter)
|
|
|
return;
|
|
|
if (adapter->session.ap.sap_config.acs_cfg.ch_list) {
|
|
|
+ hdd_debug("Clearing ACS cfg channel list");
|
|
|
qdf_mem_free(adapter->session.ap.sap_config.acs_cfg.ch_list);
|
|
|
adapter->session.ap.sap_config.acs_cfg.ch_list = NULL;
|
|
|
}
|
|
|
+ adapter->session.ap.sap_config.acs_cfg.ch_list_count = 0;
|
|
|
}
|
|
|
|
|
|
/**
|