|
@@ -2634,15 +2634,23 @@ struct ppdu_info *dp_get_ppdu_desc(struct dp_pdev *pdev, uint32_t ppdu_id,
|
|
|
}
|
|
|
|
|
|
if (ppdu_info) {
|
|
|
- /**
|
|
|
- * if we get tlv_type that is already been processed for ppdu,
|
|
|
- * that means we got a new ppdu with same ppdu id.
|
|
|
- * Hence Flush the older ppdu
|
|
|
- */
|
|
|
- if (ppdu_info->tlv_bitmap & (1 << tlv_type))
|
|
|
+ if (ppdu_info->tlv_bitmap & (1 << tlv_type)) {
|
|
|
+ /**
|
|
|
+ * if we get tlv_type that is already been processed
|
|
|
+ * for ppdu, that means we got a new ppdu with same
|
|
|
+ * ppdu id. Hence Flush the older ppdu
|
|
|
+ * for MUMIMO and OFDMA, In a PPDU we have
|
|
|
+ * multiple user with same tlv types. tlv bitmap is
|
|
|
+ * used to check whether SU or MU_MIMO/OFDMA
|
|
|
+ */
|
|
|
+ if (!(ppdu_info->tlv_bitmap &
|
|
|
+ (1 << HTT_PPDU_STATS_SCH_CMD_STATUS_TLV)))
|
|
|
+ return ppdu_info;
|
|
|
+
|
|
|
dp_ppdu_desc_deliver(pdev, ppdu_info);
|
|
|
- else
|
|
|
+ } else {
|
|
|
return ppdu_info;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|