Merge pull request #233 from CGarces/fix_5.12

Add kernel 5.12(+) (GRO_DROP removed) support
This commit is contained in:
Carlos Garcés 2021-04-03 16:53:01 +02:00 committed by GitHub
commit ab35c7e967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 */