aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCong Wang <[email protected]>2021-03-30 19:32:27 -0700
committerAlexei Starovoitov <[email protected]>2021-04-01 10:56:13 -0700
commit190179f65ba8bc18dc1d38435b7932505ca5544f (patch)
tree974d70c0d57aa33d1940869e33ad00801c3e51e8
parent7786dfc41a74e0567557b5c4a28fc8482f5f5691 (diff)
skmsg: Use GFP_KERNEL in sk_psock_create_ingress_msg()
This function is only called in process context. Signed-off-by: Cong Wang <[email protected]> Signed-off-by: Alexei Starovoitov <[email protected]> Acked-by: John Fastabend <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
-rw-r--r--net/core/skmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skmsg.c b/net/core/skmsg.c
index d43d43905d2c..656eceab73bc 100644
--- a/net/core/skmsg.c
+++ b/net/core/skmsg.c
@@ -410,7 +410,7 @@ static struct sk_msg *sk_psock_create_ingress_msg(struct sock *sk,
if (!sk_rmem_schedule(sk, skb, skb->truesize))
return NULL;
- msg = kzalloc(sizeof(*msg), __GFP_NOWARN | GFP_ATOMIC);
+ msg = kzalloc(sizeof(*msg), __GFP_NOWARN | GFP_KERNEL);
if (unlikely(!msg))
return NULL;