From: Eric Dumazet Date: Thu, 2 Feb 2017 02:13:23 +0000 (-0800) Subject: net: remove useless pfmemalloc setting X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b9ea2a7be758f2c07a0c044645edc409a8a388fd;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git net: remove useless pfmemalloc setting When __alloc_skb() allocates an skb from fast clone cache, setting pfmemalloc on the clone is not needed. Clone will be properly initialized later at skb_clone() time, including pfmemalloc field, as it is included in the headers_start/headers_end section which is fully copied. Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 26c1344cc23e..4f8f2a1a66b5 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -271,7 +271,6 @@ struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask, atomic_set(&fclones->fclone_ref, 1); fclones->skb2.fclone = SKB_FCLONE_CLONE; - fclones->skb2.pfmemalloc = pfmemalloc; } out: return skb;