|
@@ -3860,6 +3860,14 @@ struct reg_table_entry g_registry_table[] = {
|
|
|
CFG_ROAM_BG_SCAN_BAD_RSSI_OFFSET_2G_MIN,
|
|
|
CFG_ROAM_BG_SCAN_BAD_RSSI_OFFSET_2G_MAX),
|
|
|
|
|
|
+ REG_VARIABLE(CFG_ROAM_HO_DELAY_FOR_RX_NAME,
|
|
|
+ WLAN_PARAM_Integer, struct hdd_config,
|
|
|
+ ho_delay_for_rx,
|
|
|
+ VAR_FLAGS_OPTIONAL | VAR_FLAGS_RANGE_CHECK_ASSUME_DEFAULT,
|
|
|
+ CFG_ROAM_HO_DELAY_FOR_RX_DEFAULT,
|
|
|
+ CFG_ROAM_HO_DELAY_FOR_RX_MIN,
|
|
|
+ CFG_ROAM_HO_DELAY_FOR_RX_MAX),
|
|
|
+
|
|
|
REG_VARIABLE(CFG_ENABLE_FATAL_EVENT_TRIGGER, WLAN_PARAM_Integer,
|
|
|
struct hdd_config, enable_fatal_event,
|
|
|
VAR_FLAGS_OPTIONAL |
|
|
@@ -6842,6 +6850,9 @@ void hdd_cfg_print(struct hdd_context *hdd_ctx)
|
|
|
hdd_debug("Name = [%s] Value = [%u]",
|
|
|
CFG_ROAM_BG_SCAN_BAD_RSSI_OFFSET_2G_NAME,
|
|
|
hdd_ctx->config->roam_bad_rssi_thresh_offset_2g);
|
|
|
+ hdd_debug("Name = [%s] Value = [%u]",
|
|
|
+ CFG_ROAM_HO_DELAY_FOR_RX_NAME,
|
|
|
+ hdd_ctx->config->ho_delay_for_rx);
|
|
|
hdd_debug("Name = [%s] Value = [%u]",
|
|
|
CFG_MIN_REST_TIME_NAME,
|
|
|
hdd_ctx->config->min_rest_time_conc);
|
|
@@ -8796,6 +8807,8 @@ QDF_STATUS hdd_set_sme_config(struct hdd_context *hdd_ctx)
|
|
|
hdd_ctx->config->roam_bg_scan_client_bitmap;
|
|
|
smeConfig->csrConfig.roam_bad_rssi_thresh_offset_2g =
|
|
|
hdd_ctx->config->roam_bad_rssi_thresh_offset_2g;
|
|
|
+ smeConfig->csrConfig.ho_delay_for_rx =
|
|
|
+ hdd_ctx->config->ho_delay_for_rx;
|
|
|
smeConfig->csrConfig.obss_width_interval =
|
|
|
hdd_ctx->config->obss_width_trigger_interval;
|
|
|
smeConfig->csrConfig.obss_active_dwelltime =
|