Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dda1e108 authored by Yu Tian's avatar Yu Tian Committed by snandini
Browse files

qcacmn: Fix the error statistics field for CNE

rx_mpdu_missed statistics used by CNE records instances
of BA hole happens, not duplicated frames instances.
Fix this field with correct value to avoid incorrect
VOLTE switching.

Change-Id: I815b9a4caeb6eedf36be66f8650ca98d00542c60
CRs-Fixed: 2848460
parent 781ced9c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10847,7 +10847,7 @@ static void dp_rx_hw_stats_cb(struct dp_soc *soc, void *cb_ctxt,
		soc->ext_stats.rx_mpdu_received +=
					queue_status->mpdu_frms_cnt;
		soc->ext_stats.rx_mpdu_missed +=
					queue_status->late_recv_mpdu_cnt;
					queue_status->hole_cnt;
	}
	qdf_spin_unlock_bh(&soc->rx_hw_stats_lock);
}