Cong Wang wrote:
> From: Cong Wang <[email protected]>
> 
> This function is only called in process context.
> 
> Cc: John Fastabend <[email protected]>
> Cc: Daniel Borkmann <[email protected]>
> Cc: Jakub Sitnicki <[email protected]>
> Cc: Lorenz Bauer <[email protected]>
> Signed-off-by: Cong Wang <[email protected]>
> ---
>  net/core/skmsg.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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;
>  
> -- 
> 2.25.1
> 

Acked-by: John Fastabend <[email protected]>

Reply via email to