mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-29 10:24:08 +00:00
net: Return the correct errno code
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>
This commit is contained in:
parent
d773695866
commit
49251cd002
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue