Skip to content

Commit

Permalink
net: Return the correct errno code
Browse files Browse the repository at this point in the history
[ Upstream commit 49251cd ]

When kalloc or kmemdup failed, should return ENOMEM rather than ENOBUF.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Zheng Yongjun authored and Greg Kroah-Hartman committed Jun 18, 2021
1 parent 376a703 commit 51cc5ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/compat.c
Original file line number Diff line number Diff line change
@@ -160,7 +160,7 @@ int cmsghdr_from_user_compat_to_kern(struct msghdr *kmsg, struct sock *sk,
if (kcmlen > stackbuf_size)
kcmsg_base = kcmsg = sock_kmalloc(sk, kcmlen, GFP_KERNEL);
if (kcmsg == NULL)
return -ENOBUFS;
return -ENOMEM;

/* Now copy them over neatly. */
memset(kcmsg, 0, kcmlen);

0 comments on commit 51cc5ad

Please sign in to comment.