|
@@ -3211,6 +3211,30 @@ QDF_STATUS sap_is_peer_mac_allowed(struct sap_context *sap_ctx,
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
+void sap_dump_acs_channel(struct sap_acs_cfg *acs_cfg)
|
|
|
+{
|
|
|
+ uint32_t buf_len = 0, len = 0, i;
|
|
|
+ uint8_t *chan_buff = NULL;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Buffer of (num channl * 5) + 1 to consider the 4 char freq
|
|
|
+ * and 1 space after it for each channel and 1 to end the string
|
|
|
+ * with NULL.
|
|
|
+ */
|
|
|
+ buf_len = (acs_cfg->ch_list_count * 5) + 1;
|
|
|
+ chan_buff = qdf_mem_malloc(buf_len);
|
|
|
+ if (!chan_buff)
|
|
|
+ return;
|
|
|
+
|
|
|
+ for (i = 0; i < acs_cfg->ch_list_count; i++)
|
|
|
+ len += qdf_scnprintf(chan_buff + len, buf_len - len,
|
|
|
+ " %d", acs_cfg->freq_list[i]);
|
|
|
+
|
|
|
+ sap_nofl_debug("ACS freq list[%d]:%s",
|
|
|
+ acs_cfg->ch_list_count, chan_buff);
|
|
|
+ qdf_mem_free(chan_buff);
|
|
|
+}
|
|
|
+
|
|
|
#ifdef SOFTAP_CHANNEL_RANGE
|
|
|
/**
|
|
|
* sap_get_freq_list() - get the list of channel frequency
|
|
@@ -3448,11 +3472,10 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
}
|
|
|
|
|
|
for (loop_count = 0; loop_count < ch_count; loop_count++) {
|
|
|
- QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
- FL("channel frequency: %d"), list[loop_count]);
|
|
|
sap_ctx->acs_cfg->freq_list[loop_count] = list[loop_count];
|
|
|
}
|
|
|
sap_ctx->acs_cfg->ch_list_count = ch_count;
|
|
|
+ sap_dump_acs_channel(sap_ctx->acs_cfg);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|