浏览代码

qcacmn: Adding wmi param as part of peer_extd_stats

Adding two members including tx sgi_count in
host peer_extd_stats structure which is received from
the fw and populated to upper layer along with adding two
members to cdp_rx_stats.

Change-Id: Id45b2d0042d01771ac74a906d72c369c3dc31394
CRs-Fixed: 2147922
narayan 7 年之前
父节点
当前提交
22068101ca
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      wmi_unified_param.h

+ 5 - 1
wmi_unified_param.h

@@ -4090,6 +4090,8 @@ typedef struct {
  * @last_tx_power: Tx power latest
  * @atf_tokens_allocated: atf tokens allocated
  * @atf_tokens_utilized: atf tokens utilized
+ * @num_mu_tx_blacklisted: Blacklisted MU Tx count
+ * @sgi_count: sgi count of the peer
  * @reserved: for future use
  */
 typedef struct {
@@ -4103,7 +4105,9 @@ typedef struct {
 	uint32_t last_tx_power;
 	uint32_t atf_tokens_allocated;
 	uint32_t atf_tokens_utilized;
-	uint32_t reserved[4];
+	uint32_t num_mu_tx_blacklisted;
+	uint32_t sgi_count;
+	uint32_t reserved[2];
 } wmi_host_peer_extd_stats;
 
 /**