mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
net: bridge: remove redundant assignment
The variable br is assigned a value that is not being read after exiting case IFLA_STATS_LINK_XSTATS_SLAVE. The assignment is redundant and can be removed. Addresses-Coverity ("Unused value") Signed-off-by: Nigel Christian <nigel.l.christian@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c1eaf3c09c
commit
ccc882f0d8
@ -1644,7 +1644,6 @@ static size_t br_get_linkxstats_size(const struct net_device *dev, int attr)
|
||||
p = br_port_get_rtnl(dev);
|
||||
if (!p)
|
||||
return 0;
|
||||
br = p->br;
|
||||
vg = nbp_vlan_group(p);
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user