1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-09-19 20:50:41 +00:00

Fix GRO_DROP deprecation kernel 5.12

This commit is contained in:
Carlos 2021-04-03 14:38:14 +00:00
parent c0ce81745e
commit e7e83f2593

View File

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