Commit 2c48c2f7 authored by Jiapeng Chong's avatar Jiapeng Chong Committed by Yang Yingliang
Browse files

rtnetlink: Fix missing error code in rtnl_bridge_notify()



stable inclusion
from linux-4.19.196
commit 7e0147403ebae2fc60b1657114058d20e874a89a

--------------------------------

[ Upstream commit a8db57c1 ]

The error code is missing in this code scenario, add the error code
'-EINVAL' to the return value 'err'.

Eliminate the follow smatch warning:

net/core/rtnetlink.c:4834 rtnl_bridge_notify() warn: missing error code
'err'.

Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
parent c72955f7
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -4102,8 +4102,10 @@ static int rtnl_bridge_notify(struct net_device *dev)
	if (err < 0)
		goto errout;

	if (!skb->len)
	if (!skb->len) {
		err = -EINVAL;
		goto errout;
	}

	rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
	return 0;