qcacmn: Forward the igmp packet for intra bss processing

Forward the igmp packet for intra bss processing

Change-Id: Ie4838a00542e49e8d76503297332b99cf3e67563
CRs-Fixed: 3261921
This commit is contained in:
Sai Rupesh Chevuru
2022-08-10 15:53:24 +05:30
committed by Madan Koyyalamudi
父節點 4720a30038
當前提交 086f192c0a
共有 4 個文件被更改,包括 27 次插入0 次删除

查看文件

@@ -5107,6 +5107,7 @@ void dp_pdev_print_tid_stats(struct dp_pdev *pdev)
struct cdp_tid_tx_stats total_tx;
struct cdp_tid_rx_stats total_rx;
uint8_t tid, tqm_status_idx, htt_status_idx;
struct cdp_tid_rx_stats *rx_wbm_stats = NULL;
DP_PRINT_STATS("Packets received in hardstart: %llu ",
pdev->stats.tid_stats.ingress_stack);
@@ -5115,6 +5116,8 @@ void dp_pdev_print_tid_stats(struct dp_pdev *pdev)
DP_PRINT_STATS("Per TID Video Stats:\n");
for (tid = 0; tid < CDP_MAX_DATA_TIDS; tid++) {
rx_wbm_stats = &pdev->stats.tid_stats.tid_rx_wbm_stats[0][tid];
dp_accumulate_tid_stats(pdev, tid, &total_tx, &total_rx,
TID_COUNTER_STATS);
DP_PRINT_STATS("----TID: %d----", tid);
@@ -5171,6 +5174,10 @@ void dp_pdev_print_tid_stats(struct dp_pdev *pdev)
total_rx.mcast_msdu_cnt);
DP_PRINT_STATS("Rx Broadcast MSDU Count: %llu\n",
total_rx.bcast_msdu_cnt);
DP_PRINT_STATS("Rx WBM Intra Bss Deliver Count: %llu",
rx_wbm_stats->intrabss_cnt);
DP_PRINT_STATS("Rx WBM Intrabss Drop Count: %llu",
rx_wbm_stats->fail_cnt[INTRABSS_DROP]);
}
}