Re: [PATCH] kunit: skb: use "gfp" variable instead of hardcoding GFP_KERNEL

2024-11-09 Thread Kuan-Wei Chiu
On Mon, Nov 04, 2024 at 08:16:30PM +0300, Dan Carpenter wrote: > The intent here was clearly to use the gfp variable flags instead of > hardcoding GFP_KERNEL. All the callers pass GFP_KERNEL as the gfp > flags so this doesn't affect runtime. > > Fixes: b3231d353a51 ("kunit: add a convenience allo

Re: [PATCH] kunit: skb: use "gfp" variable instead of hardcoding GFP_KERNEL

2024-11-09 Thread David Gow
On Tue, 5 Nov 2024 at 01:16, Dan Carpenter wrote: > > The intent here was clearly to use the gfp variable flags instead of > hardcoding GFP_KERNEL. All the callers pass GFP_KERNEL as the gfp > flags so this doesn't affect runtime. > > Fixes: b3231d353a51 ("kunit: add a convenience allocation wrap

[PATCH] kunit: skb: use "gfp" variable instead of hardcoding GFP_KERNEL

2024-11-04 Thread Dan Carpenter
The intent here was clearly to use the gfp variable flags instead of hardcoding GFP_KERNEL. All the callers pass GFP_KERNEL as the gfp flags so this doesn't affect runtime. Fixes: b3231d353a51 ("kunit: add a convenience allocation wrapper for SKBs") Signed-off-by: Dan Carpenter --- include/kuni