From: Jiapeng Chong Date: Wed, 2 Jun 2021 10:15:04 +0000 (+0800) Subject: rtnetlink: Fix missing error code in rtnl_bridge_notify() X-Git-Tag: accepted/tizen/unified/20230118.172025~7117^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8db57c1d285c758adc7fb43d6e2bad2554106e1;p=platform%2Fkernel%2Flinux-rpi.git rtnetlink: Fix missing error code in rtnl_bridge_notify() 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: Abaci Robot Signed-off-by: Jiapeng Chong Signed-off-by: David S. Miller --- diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index 714d5fa..3e84279 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c @@ -4842,8 +4842,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;