ipv6/mcast: join error paths using goto
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5ce1bbb97b
commit
448eb71f40
|
@ -303,20 +303,23 @@ static struct inet6_dev *ip6_mc_find_dev(struct net *net,
|
||||||
dev = dev_get_by_index(net, ifindex);
|
dev = dev_get_by_index(net, ifindex);
|
||||||
|
|
||||||
if (!dev)
|
if (!dev)
|
||||||
return NULL;
|
goto nodev;
|
||||||
idev = in6_dev_get(dev);
|
idev = in6_dev_get(dev);
|
||||||
if (!idev) {
|
if (!idev)
|
||||||
dev_put(dev);
|
goto release;
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
read_lock_bh(&idev->lock);
|
read_lock_bh(&idev->lock);
|
||||||
if (idev->dead) {
|
if (idev->dead)
|
||||||
|
goto unlock_release;
|
||||||
|
|
||||||
|
return idev;
|
||||||
|
|
||||||
|
unlock_release:
|
||||||
read_unlock_bh(&idev->lock);
|
read_unlock_bh(&idev->lock);
|
||||||
in6_dev_put(idev);
|
in6_dev_put(idev);
|
||||||
|
release:
|
||||||
dev_put(dev);
|
dev_put(dev);
|
||||||
|
nodev:
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
|
||||||
return idev;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ipv6_sock_mc_close(struct sock *sk)
|
void ipv6_sock_mc_close(struct sock *sk)
|
||||||
|
|
Loading…
Reference in New Issue