Browse Source

qcacmn: Add peer mac address in struct ol_txrx_desc_type

Local peer_id is being cleaned up across DP, HDD and PS/WMA.
So, any references to local peer_id/sta_id will be replaced
by peer mac address and all interactions between the layers
will be based on peer mac address.

Change-Id: I3a141d0a1e549fcbb587373f1e0d57dfd031911f
CRs-Fixed: 2503144
Rakshith Suresh Patkar 5 years ago
parent
commit
b3bc8abbd6
1 changed files with 2 additions and 0 deletions
  1. 2 0
      dp/inc/cdp_txrx_mob_def.h

+ 2 - 0
dp/inc/cdp_txrx_mob_def.h

@@ -234,11 +234,13 @@ enum peer_debug_id_type {
  * @sta_id: sta id
  * @is_qos_enabled: is station qos enabled
  * @is_wapi_supported: is station wapi supported
+ * @peer_addr: peer mac address
  */
 struct ol_txrx_desc_type {
 	uint8_t sta_id;
 	uint8_t is_qos_enabled;
 	uint8_t is_wapi_supported;
+	struct qdf_mac_addr peer_addr;
 };
 
 /**