From b208ed4db18e0850a860d8ea7bd9f59f02e607ff Mon Sep 17 00:00:00 2001 From: spuligil Date: Thu, 24 Oct 2019 04:05:10 -0700 Subject: fw-api: CL 8315141 - update fw common interface files HTT stats: rename field to num_spatial_reuse_opportunities Change-Id: I405185393616b952d622e8ccaf1a2f51909d2111 CRs-Fixed: 2262693 --- fw/htt_stats.h | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/fw/htt_stats.h b/fw/htt_stats.h index 7cce1de40fdc..193af216af40 100644 --- a/fw/htt_stats.h +++ b/fw/htt_stats.h @@ -4071,11 +4071,24 @@ typedef struct { A_UINT32 num_sr_tx_transmissions; /* CORRECTED - use this one */ A_UINT32 num_sr_tx_tranmissions; /* DEPRECATED - has typo in name */ }; - /* num_sr_rx_ge_pd_rssi_thr - * counter of rx from other BSS for which RSSI was above the - * packet-detection threshold specified for enabling spatial reuse - */ - A_UINT32 num_sr_rx_ge_pd_rssi_thr; + union { + /* + * Count the number of times the RSSI from an other-BSS signal + * is below the spatial reuse power threshold, thus providing an + * opportunity for spatial reuse since OBSS interference will be + * inconsequential. + */ + A_UINT32 num_spatial_reuse_opportunities; + + /* DEPRECATED: num_sr_rx_ge_pd_rssi_thr + * This old name has been deprecated because it does not + * clearly and accurately reflect the information stored within + * this field. + * Use the new name (num_spatial_reuse_opportunities) instead of + * the deprecated old name (num_sr_rx_ge_pd_rssi_thr). + */ + A_UINT32 num_sr_rx_ge_pd_rssi_thr; + }; } htt_pdev_obss_pd_stats_tlv; /* NOTE: -- cgit v1.2.3