瀏覽代碼

qcacld-3.0: Fix obss_width_trigger_interval zero in WMI command

DUT roams to 2 GHz channel 6 bw 20 MHz,  OBSS parameters are not
initialized by lim_fill_ft_session. Later when DUT gets CSA event
to 2 GHz channel 1 bw 40 MHz, the OBSS scan command will send
invalid obss_width_trigger_interval with zero value to target.
Fix by initialize the OBSS parameters without check current AP's
BW.

Change-Id: I6f895371898fde292cde5a108a3b4fcd95836186
CRs-Fixed: 3287522
Liangwei Dong 2 年之前
父節點
當前提交
3c5a6dd912
共有 1 個文件被更改,包括 2 次插入5 次删除
  1. 2 5
      core/mac/src/pe/lim/lim_ft.c

+ 2 - 5
core/mac/src/pe/lim/lim_ft.c

@@ -758,11 +758,8 @@ void lim_fill_ft_session(struct mac_context *mac,
 	}
 	ft_session->encryptType = pe_session->encryptType;
 	ft_session->limRmfEnabled = pe_session->limRmfEnabled;
-
-	if ((ft_session->limRFBand == REG_BAND_2G) &&
-		(ft_session->htSupportedChannelWidthSet ==
-		eHT_CHANNEL_WIDTH_40MHZ))
-		lim_init_obss_params(mac, ft_session);
+	/* Load default OBSS parameters to session entry */
+	lim_init_obss_params(mac, ft_session);
 
 	ft_session->enableHtSmps = pe_session->enableHtSmps;
 	ft_session->htSmpsvalue = pe_session->htSmpsvalue;