diff mbox series

[net-next] net: Return the correct errno code

Message ID 20210602140640.486273-1-zhengyongjun3@huawei.com
State New
Headers show
Series [net-next] net: Return the correct errno code | expand

Commit Message

Zheng Yongjun June 2, 2021, 2:06 p.m. UTC
When kalloc or kmemdup failed, should return ENOMEM rather than ENOBUF.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
---
 net/compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

patchwork-bot+netdevbpf@kernel.org June 3, 2021, 10:20 p.m. UTC | #1
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Wed, 2 Jun 2021 22:06:40 +0800 you wrote:
> When kalloc or kmemdup failed, should return ENOMEM rather than ENOBUF.

> 

> Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>

> ---

>  net/compat.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)


Here is the summary with links:
  - [net-next] net: Return the correct errno code
    https://git.kernel.org/netdev/net/c/49251cd00228

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/net/compat.c b/net/compat.c
index ddd15af3a283..210fc3b4d0d8 100644
--- a/net/compat.c
+++ b/net/compat.c
@@ -177,7 +177,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);