net: Return the correct errno code
[ Upstream commit 49251cd00228a3c983651f6bb2f33f6a0b8f152e ] 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>
This commit is contained in:
parent
04c1556bfc
commit
d8b2e3e17c
|
@ -177,7 +177,7 @@ int cmsghdr_from_user_compat_to_kern(struct msghdr *kmsg, struct sock *sk,
|
||||||
if (kcmlen > stackbuf_size)
|
if (kcmlen > stackbuf_size)
|
||||||
kcmsg_base = kcmsg = sock_kmalloc(sk, kcmlen, GFP_KERNEL);
|
kcmsg_base = kcmsg = sock_kmalloc(sk, kcmlen, GFP_KERNEL);
|
||||||
if (kcmsg == NULL)
|
if (kcmsg == NULL)
|
||||||
return -ENOBUFS;
|
return -ENOMEM;
|
||||||
|
|
||||||
/* Now copy them over neatly. */
|
/* Now copy them over neatly. */
|
||||||
memset(kcmsg, 0, kcmlen);
|
memset(kcmsg, 0, kcmlen);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user