vxlan: fix error return code in vxlan_fdb_append
[ Upstream commit 7cea5560bf656b84f9ed01c0cc829d4eecd0640b ] When kmalloc and dst_cache_init failed, should return ENOMEM rather than ENOBUFS. Signed-off-by: Hongbin Wang <wh_bin@126.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
8e7ea11364
commit
e129c55153
@@ -710,11 +710,11 @@ static int vxlan_fdb_append(struct vxlan_fdb *f,
|
|||||||
|
|
||||||
rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
|
rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
|
||||||
if (rd == NULL)
|
if (rd == NULL)
|
||||||
return -ENOBUFS;
|
return -ENOMEM;
|
||||||
|
|
||||||
if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
|
if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
|
||||||
kfree(rd);
|
kfree(rd);
|
||||||
return -ENOBUFS;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
rd->remote_ip = *ip;
|
rd->remote_ip = *ip;
|
||||||
|
Reference in New Issue
Block a user