qcacmn: add drop count for OOR eapol frames
Add drop statistics for duplicate EAPOL frames received in the REO exception ring as OOR frames. This will help understand if EAPOL frames are getting dropped which could cause connection issues. Change-Id: Ib9d5a3c04ce6638c65166f02261af5c526cc47eb CRs-Fixed: 2814633
此提交包含在:
@@ -6028,6 +6028,8 @@ void dp_txrx_path_stats(struct dp_soc *soc)
|
||||
pdev->soc->stats.rx.err.reo_err_oor_to_stack);
|
||||
DP_PRINT_STATS("REO err oor msdu drop: %u",
|
||||
pdev->soc->stats.rx.err.reo_err_oor_drop);
|
||||
DP_PRINT_STATS("REO err oor eapol drop: %u",
|
||||
pdev->soc->stats.rx.err.reo_err_oor_eapol_drop);
|
||||
DP_PRINT_STATS("Rx err msdu rejected: %d",
|
||||
soc->stats.rx.err.rejected);
|
||||
DP_PRINT_STATS("Rx raw frame dropped: %d",
|
||||
@@ -6613,6 +6615,9 @@ dp_print_soc_rx_stats(struct dp_soc *soc)
|
||||
DP_PRINT_STATS("REO err oor msdu drop: %d",
|
||||
soc->stats.rx.err.reo_err_oor_drop);
|
||||
|
||||
DP_PRINT_STATS("REO err oor eapol drop: %d",
|
||||
soc->stats.rx.err.reo_err_oor_eapol_drop);
|
||||
|
||||
DP_PRINT_STATS("Rx err msdu rejected: %d",
|
||||
soc->stats.rx.err.rejected);
|
||||
|
||||
|
新增問題並參考
封鎖使用者