浏览代码

qcacld-3.0: Restore pdev for module start/stop and SSR cases

For module start/stop and SSR cases, pdev is reused so it needs to be
restored to MAC/WMA contexts again.

Change-Id: Ifce95437d2c32a71c9376164f821f4e27df38409
CRs-fixed: 2021415
Yue Ma 8 年之前
父节点
当前提交
e3e86ab602
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5 3
      core/hdd/src/wlan_hdd_main.c

+ 5 - 3
core/hdd/src/wlan_hdd_main.c

@@ -1382,10 +1382,12 @@ void hdd_update_tgt_cfg(void *context, void *param)
 	struct cds_config_info *cds_cfg = cds_get_ini_config();
 	uint8_t antenna_mode;
 
-	/* Reuse same pdev for module stop and start */
+	/* Reuse same pdev for module start/stop or SSR */
 	if ((hdd_get_conparam() == QDF_GLOBAL_FTM_MODE) ||
-		(!cds_is_driver_loading())) {
-		hdd_err("Reuse pdev for module start/stop");
+	    !cds_is_driver_loading()) {
+		hdd_err("Reuse pdev for module start/stop or SSR");
+		/* Restore pdev to MAC/WMA contexts */
+		sme_store_pdev(hdd_ctx->hHal, hdd_ctx->hdd_pdev);
 	} else {
 		ret = hdd_objmgr_create_and_store_pdev(hdd_ctx);
 		if (ret) {