Message ID | 20220407024622.185179-1-wh_bin@126.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 7cea5560bf656b84f9ed01c0cc829d4eecd0640b |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | vxlan: fix error return code in vxlan_fdb_append | expand |
Hello: This patch was applied to netdev/net.git (master) by David S. Miller <davem@davemloft.net>: On Wed, 6 Apr 2022 22:46:22 -0400 you wrote: > When kmalloc and dst_cache_init failed, > should return ENOMEM rather than ENOBUFS. > > Signed-off-by: Hongbin Wang <wh_bin@126.com> > --- > drivers/net/vxlan/vxlan_core.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Here is the summary with links: - vxlan: fix error return code in vxlan_fdb_append https://git.kernel.org/netdev/net/c/7cea5560bf65 You are awesome, thank you!
diff --git a/drivers/net/vxlan/vxlan_core.c b/drivers/net/vxlan/vxlan_core.c index de97ff98d36e..8a5e3a6d32d7 100644 --- a/drivers/net/vxlan/vxlan_core.c +++ b/drivers/net/vxlan/vxlan_core.c @@ -651,11 +651,11 @@ static int vxlan_fdb_append(struct vxlan_fdb *f, rd = kmalloc(sizeof(*rd), GFP_ATOMIC); if (rd == NULL) - return -ENOBUFS; + return -ENOMEM; if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) { kfree(rd); - return -ENOBUFS; + return -ENOMEM; } rd->remote_ip = *ip;
When kmalloc and dst_cache_init failed, should return ENOMEM rather than ENOBUFS. Signed-off-by: Hongbin Wang <wh_bin@126.com> --- drivers/net/vxlan/vxlan_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)