aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/rtnetlink.c
diff options
context:
space:
mode:
authorluo penghao <cgel.zte@gmail.com>2021-10-21 06:40:20 +0000
committerDavid S. Miller <davem@davemloft.net>2021-10-21 12:48:59 +0100
commit50af5969bb22bb8ea757f87934c2478715afa854 (patch)
tree761f361e0da920520a20e83a83063c9fd709bc26 /net/core/rtnetlink.c
parentnet: stats: Read the statistics in ___gnet_stats_copy_basic() instead of adding. (diff)
downloadlinux-dev-50af5969bb22bb8ea757f87934c2478715afa854.tar.xz
linux-dev-50af5969bb22bb8ea757f87934c2478715afa854.zip
net/core: Remove unused assignment operations and variable
Although if_info_size is assigned, it has not been used. And the variable should also be deleted. The clang_analyzer complains as follows: net/core/rtnetlink.c:3806: warning: Although the value stored to 'if_info_size' is used in the enclosing expression, the value is never actually read from 'if_info_size'. Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: luo penghao <luo.penghao@zte.com.cn> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/rtnetlink.c')
-rw-r--r--net/core/rtnetlink.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 564d24c451af..79477dcae7c2 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -3804,9 +3804,8 @@ struct sk_buff *rtmsg_ifinfo_build_skb(int type, struct net_device *dev,
struct net *net = dev_net(dev);
struct sk_buff *skb;
int err = -ENOBUFS;
- size_t if_info_size;
- skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags);
+ skb = nlmsg_new(if_nlmsg_size(dev, 0), flags);
if (skb == NULL)
goto errout;