Ver código fonte

qcacmn: Change the data type of average/roundup tx rate

The datatype of average and round up tx rate was uint32_t which truncates
the upper byte of the average and round up tx rate value.

changing the datatype of average and round up tx rate from uint32_t to
uint64_t.

Change-Id: I3809ba7cfc73ec0b4609981e70d57112ac958f33
CRs-Fixed: 2409751
Shashikala Prabhu 6 anos atrás
pai
commit
f7786d3822

+ 2 - 2
dp/cmn_dp_api/dp_ratetable.h

@@ -65,14 +65,14 @@ enum CMN_BW_TYPES {
 #define DUMMY_MARKER	  0
 #define DP_ATH_RATE_IN(c)  (DP_ATH_EP_MUL((c), DP_ATH_RATE_EP_MULTIPLIER))
 
-static inline int dp_ath_rate_lpf(int _d, int _e)
+static inline int dp_ath_rate_lpf(uint64_t _d, int _e)
 {
 	_e = DP_ATH_RATE_IN((_e));
 	return (((_d) != DUMMY_MARKER) ? ((((_d) << 3) + (_e) - (_d)) >> 3) :
 			(_e));
 }
 
-static inline int dp_ath_rate_out(int _i)
+static inline int dp_ath_rate_out(uint64_t _i)
 {
 	int _mul = DP_ATH_RATE_EP_MULTIPLIER;
 

+ 2 - 2
dp/inc/cdp_txrx_stats_struct.h

@@ -418,8 +418,8 @@ struct cdp_tx_stats {
 	uint32_t mcast_last_tx_rate;
 	uint32_t mcast_last_tx_rate_mcs;
 	uint32_t last_per;
-	uint32_t rnd_avg_tx_rate;
-	uint32_t avg_tx_rate;
+	uint64_t rnd_avg_tx_rate;
+	uint64_t avg_tx_rate;
 	uint32_t last_ack_rssi;
 	uint32_t tx_bytes_success_last;
 	uint32_t tx_data_success_last;

+ 1 - 1
dp/wifi3.0/dp_htt.c

@@ -129,7 +129,7 @@ dp_tx_rate_stats_update(struct dp_peer *peer,
 			struct cdp_tx_completion_ppdu_user *ppdu)
 {
 	uint32_t ratekbps = 0;
-	uint32_t ppdu_tx_rate = 0;
+	uint64_t ppdu_tx_rate = 0;
 	uint32_t rix;
 
 	if (!peer || !ppdu)