qcacmn: fix incorrect NSS value in host RX stats

Revert change "Limit maxinum nss number as 2 for MCL platform" and
align with WIN function: hal_rx_msdu_start_nss_get_8074v2().
besides, only increase rx.nss[NSS - 1] when NSS is > 0 and rx packet
type is 11N/AC/AX.

Change-Id: I0a64f00a3d252c806216cc3196e71290f111c88a
CRs-Fixed: 2429329
此提交包含在:
Jinwei Chen
2019-04-22 18:38:51 +08:00
提交者 nshrivas
父節點 3f43a6924b
當前提交 e661127fa1
共有 2 個檔案被更改,包括 10 行新增7 行删除

查看文件

@@ -55,16 +55,11 @@ hal_rx_msdu_start_nss_get_6390(uint8_t *buf)
struct rx_msdu_start *msdu_start =
&pkt_tlvs->msdu_start_tlv.rx_msdu_start;
uint8_t mimo_ss_bitmap;
uint32_t ss_index;
mimo_ss_bitmap = HAL_RX_MSDU_START_MIMO_SS_BITMAP(msdu_start);
ss_index = qdf_get_hweight8(mimo_ss_bitmap);
/* Hot fix only, maxinum nss number for MCL set to 1 (nss 2)*/
if ((ss_index > 1) && (ss_index <= 3))
ss_index = 1;
return qdf_get_hweight8(mimo_ss_bitmap);
return ss_index;
}
/**