diff options
-rw-r--r-- | net/ipv6/addrconf.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 77b626136c23..4ab4c38958c6 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -4306,6 +4306,7 @@ static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token) | |||
4306 | struct inet6_ifaddr *ifp; | 4306 | struct inet6_ifaddr *ifp; |
4307 | struct net_device *dev = idev->dev; | 4307 | struct net_device *dev = idev->dev; |
4308 | bool update_rs = false; | 4308 | bool update_rs = false; |
4309 | struct in6_addr ll_addr; | ||
4309 | 4310 | ||
4310 | if (token == NULL) | 4311 | if (token == NULL) |
4311 | return -EINVAL; | 4312 | return -EINVAL; |
@@ -4325,11 +4326,9 @@ static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token) | |||
4325 | 4326 | ||
4326 | write_unlock_bh(&idev->lock); | 4327 | write_unlock_bh(&idev->lock); |
4327 | 4328 | ||
4328 | if (!idev->dead && (idev->if_flags & IF_READY)) { | 4329 | if (!idev->dead && (idev->if_flags & IF_READY) && |
4329 | struct in6_addr ll_addr; | 4330 | !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE | |
4330 | 4331 | IFA_F_OPTIMISTIC)) { | |
4331 | ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE | | ||
4332 | IFA_F_OPTIMISTIC); | ||
4333 | 4332 | ||
4334 | /* If we're not ready, then normal ifup will take care | 4333 | /* If we're not ready, then normal ifup will take care |
4335 | * of this. Otherwise, we need to request our rs here. | 4334 | * of this. Otherwise, we need to request our rs here. |