Revision e8684db191e4164f3f5f3ad7dec04a6734c25f1c authored by Yuiko Oshino on 27 October 2021, 18:23:02 UTC, committed by David S. Miller on 28 October 2021, 13:45:07 UTC
The driver allocates skb during ndo_open with GFP_ATOMIC which has high chance of failure when there are multiple instances.
GFP_KERNEL is enough while open and use GFP_ATOMIC only from interrupt context.

Fixes: 23f0703c125b ("lan743x: Add main source files for new lan743x driver")
Signed-off-by: Yuiko Oshino <yuiko.oshino@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 1d9d6fd
History
File Mode Size
Kconfig -rw-r--r-- 3.4 KB
Makefile -rw-r--r-- 530 bytes
espintcp.c -rw-r--r-- 12.6 KB
xfrm_algo.c -rw-r--r-- 13.9 KB
xfrm_compat.c -rw-r--r-- 19.2 KB
xfrm_device.c -rw-r--r-- 9.7 KB
xfrm_hash.c -rw-r--r-- 803 bytes
xfrm_hash.h -rw-r--r-- 4.6 KB
xfrm_inout.h -rw-r--r-- 1.8 KB
xfrm_input.c -rw-r--r-- 18.8 KB
xfrm_interface.c -rw-r--r-- 22.7 KB
xfrm_ipcomp.c -rw-r--r-- 7.4 KB
xfrm_output.c -rw-r--r-- 20.6 KB
xfrm_policy.c -rw-r--r-- 105.6 KB
xfrm_proc.c -rw-r--r-- 2.8 KB
xfrm_replay.c -rw-r--r-- 18.5 KB
xfrm_state.c -rw-r--r-- 67.9 KB
xfrm_sysctl.c -rw-r--r-- 1.9 KB
xfrm_user.c -rw-r--r-- 84.3 KB

back to top