ipv6: remove a useless NULL check
In dev_forward_change(), it is useless to check if idev->dev is NULL, it is always non-NULL here. Reported-by: Fengguang Wu <fengguang.wu@intel.com> Cc: David S. Miller <davem@davemloft.net> Signed-off-by: Cong Wang <amwang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
398f382c0a
commit
1a9408355e
@ -607,7 +607,7 @@ static void dev_forward_change(struct inet6_dev *idev)
|
||||
dev = idev->dev;
|
||||
if (idev->cnf.forwarding)
|
||||
dev_disable_lro(dev);
|
||||
if (dev && (dev->flags & IFF_MULTICAST)) {
|
||||
if (dev->flags & IFF_MULTICAST) {
|
||||
if (idev->cnf.forwarding)
|
||||
ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user