浏览代码

qcacld-3.0: Update peer mac address to set NUDGE as active command

While parsing the nudge command, the peer mac address is not copied to
the params structure passed to sme. So while Nudge active command,
since peer mac address is NULL, the driver is not able to get the
peer object and set the Nudge active command fails.

Copy the peer mac address to set the active command to peer
object, so that when nudge command response is received, the
response is not dropped due to active command is not nudge.

Change-Id: I11b11b3187dff5a79d0f79106c21d60d04edc17b
CRs-Fixed: 2888903
Pragaspathi Thilagaraj 4 年之前
父节点
当前提交
b4107b94ba
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      core/hdd/src/wlan_hdd_twt.c

+ 4 - 0
core/hdd/src/wlan_hdd_twt.c

@@ -2074,6 +2074,10 @@ static int hdd_twt_nudge_session(struct hdd_adapter *adapter,
 		nla_memcpy(params.peer_macaddr, tb[id], QDF_MAC_ADDR_SIZE);
 		hdd_debug("peer mac_addr "QDF_MAC_ADDR_FMT,
 			  QDF_MAC_ADDR_REF(params.peer_macaddr));
+	} else {
+		qdf_mem_copy(params.peer_macaddr,
+			     hdd_sta_ctx->conn_info.bssid.bytes,
+			     QDF_MAC_ADDR_SIZE);
 	}
 
 	id = QCA_WLAN_VENDOR_ATTR_TWT_NUDGE_FLOW_ID;