浏览代码

qcacld-3.0: add hif_ce_desc_history to ssr driver dump

Current code doesn't have hif_ce_desc_history in ssr driver dump.
Fix this by adding the two data structs: hif_ce_desc_history_buff
and hif_ce_desc_history to the ssr driver dump regions.

Change-Id: I4b73dfe8909bd4f75cdf8c172c590c0aff3b1d1c
CRs-Fixed: 3443225
Mohammed Ahmed 2 年之前
父节点
当前提交
ed5993c5c7
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      core/hdd/src/wlan_hdd_main.c

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

@@ -240,6 +240,7 @@
 #include "wlan_psoc_mlme_ucfg_api.h"
 #include "os_if_qmi.h"
 #include "wlan_qmi_ucfg_api.h"
+#include "ce_api.h"
 
 #ifdef MULTI_CLIENT_LL_SUPPORT
 #define WLAM_WLM_HOST_DRIVER_PORT_ID 0xFFFFFF
@@ -4336,6 +4337,8 @@ int hdd_wlan_start_modules(struct hdd_context *hdd_ctx, bool reinit)
 			goto power_down;
 		}
 
+		hif_ce_desc_history_log_register();
+
 		hif_ctx = cds_get_context(QDF_MODULE_ID_HIF);
 		if (!hif_ctx) {
 			ret = -EINVAL;
@@ -15254,6 +15257,9 @@ int hdd_wlan_stop_modules(struct hdd_context *hdd_ctx, bool ftm_mode)
 	wlan_connectivity_logging_stop();
 
 	ucfg_ipa_component_config_free();
+
+	hif_ce_desc_history_log_unregister();
+
 	hdd_hif_close(hdd_ctx, hif_ctx);
 
 	ol_cds_free();