qcacmn: SG support in RX path

Process the sg frames received in RX path.

Change-Id: Ia2d83c75c46f804599ca8fda4668c43ee508d59e
CRs-Fixed: 3303055
This commit is contained in:
Sai Rupesh Chevuru
2022-09-29 15:22:10 +05:30
committed by Madan Koyyalamudi
부모 7f84ab9a72
커밋 431514912a
4개의 변경된 파일39개의 추가작업 그리고 10개의 파일을 삭제

파일 보기

@@ -1772,6 +1772,23 @@ qdf_nbuf_t dp_rx_sg_create(struct dp_soc *soc, qdf_nbuf_t nbuf)
return parent;
}
#ifdef DP_RX_SG_FRAME_SUPPORT
/**
* dp_rx_is_sg_supported() - SG packets processing supported or not.
*
* Return: returns true when processing is supported else false.
*/
bool dp_rx_is_sg_supported(void)
{
return true;
}
#else
bool dp_rx_is_sg_supported(void)
{
return false;
}
#endif
#endif /* QCA_HOST_MODE_WIFI_DISABLED */
#ifdef QCA_PEER_EXT_STATS