Ver Fonte

qcacld-3.0: WMI_ROAM_INVOKE_CMDID passed channel id to F/W

Testing HSP roaming by issue DRIVER FASTREASSOC
00:24:01:38:b1:a1 6 to trigger manually roaming,
host gave wrong channel number instead of channel freq in
WMI_ROAM_INVOKE_CMDID.

Change-Id: I50157f2aa3447ee7b57a4ddefabd41db0876a50c
CRs-Fixed: 2592946
Jianmin Zhu há 5 anos atrás
pai
commit
6cc8f4ac49
1 ficheiros alterados com 6 adições e 8 exclusões
  1. 6 8
      core/hdd/src/wlan_hdd_ioctl.c

+ 6 - 8
core/hdd/src/wlan_hdd_ioctl.c

@@ -4864,6 +4864,7 @@ static int drv_cmd_fast_reassoc(struct hdd_adapter *adapter,
 	int ret = 0;
 	uint8_t *value = command;
 	uint8_t channel = 0;
+	uint32_t ch_freq;
 	tSirMacAddr bssid;
 	uint32_t roam_id = INVALID_ROAM_ID;
 	tCsrRoamModifyProfileFields mod_fields;
@@ -4896,7 +4897,6 @@ static int drv_cmd_fast_reassoc(struct hdd_adapter *adapter,
 	}
 
 	mac_handle = hdd_ctx->mac_handle;
-
 	/*
 	 * if the target bssid is same as currently associated AP,
 	 * issue reassoc to same AP
@@ -4905,11 +4905,8 @@ static int drv_cmd_fast_reassoc(struct hdd_adapter *adapter,
 			 QDF_MAC_ADDR_SIZE)) {
 		hdd_warn("Reassoc BSSID is same as currently associated AP bssid");
 		if (roaming_offload_enabled(hdd_ctx)) {
-			channel = wlan_reg_freq_to_chan(
-					hdd_ctx->pdev,
-					sta_ctx->conn_info.chan_freq);
-			hdd_wma_send_fastreassoc_cmd(adapter, bssid,
-						     channel);
+			ch_freq = sta_ctx->conn_info.chan_freq;
+			hdd_wma_send_fastreassoc_cmd(adapter, bssid, ch_freq);
 		} else {
 			sme_get_modify_profile_fields(mac_handle,
 				adapter->vdev_id,
@@ -4927,12 +4924,13 @@ static int drv_cmd_fast_reassoc(struct hdd_adapter *adapter,
 		return -EINVAL;
 	}
 
+	ch_freq = wlan_reg_chan_to_freq(hdd_ctx->pdev, channel);
 	if (roaming_offload_enabled(hdd_ctx)) {
-		hdd_wma_send_fastreassoc_cmd(adapter, bssid, (int)channel);
+		hdd_wma_send_fastreassoc_cmd(adapter, bssid, ch_freq);
 		goto exit;
 	}
 	/* Proceed with reassoc */
-	req.ch_freq = wlan_reg_chan_to_freq(hdd_ctx->pdev, channel);
+	req.ch_freq = ch_freq;
 	req.src = FASTREASSOC;
 	qdf_mem_copy(req.bssid.bytes, bssid, sizeof(tSirMacAddr));
 	sme_handoff_request(mac_handle, adapter->vdev_id, &req);