Add kernel 5.12(+) (GRO_DROP removed) support

This commit is contained in:
clnhub 2021-03-08 21:05:37 +01:00 committed by Carlos
parent 6a758d54cf
commit ac90a311a3

View File

@ -355,8 +355,12 @@ static int napi_recv(_adapter *padapter, int budget)
#ifdef CONFIG_RTW_GRO #ifdef CONFIG_RTW_GRO
if (pregistrypriv->en_gro) { if (pregistrypriv->en_gro) {
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 12, 0)
if (rtw_napi_gro_receive(&padapter->napi, pskb) != GRO_DROP) if (rtw_napi_gro_receive(&padapter->napi, pskb) != GRO_DROP)
rx_ok = _TRUE; rx_ok = _TRUE;
#else
rx_ok = _TRUE;
#endif
goto next; goto next;
} }
#endif /* CONFIG_RTW_GRO */ #endif /* CONFIG_RTW_GRO */