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
This commit is contained in:
Yu Tian
2021-01-05 16:17:10 +08:00
committed by snandini
parent 82a2d30a28
commit ab67bf289d

View File

@@ -11667,7 +11667,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);
}