|
@@ -2509,7 +2509,8 @@ static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
|
|
struct inet6_ifaddr *ifp;
|
|
struct inet6_ifaddr *ifp;
|
|
|
|
|
|
ifp = ipv6_add_addr(idev, addr, NULL, plen,
|
|
ifp = ipv6_add_addr(idev, addr, NULL, plen,
|
|
- scope, IFA_F_PERMANENT, 0, 0);
|
|
|
|
|
|
+ scope, IFA_F_PERMANENT,
|
|
|
|
+ INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
|
|
if (!IS_ERR(ifp)) {
|
|
if (!IS_ERR(ifp)) {
|
|
spin_lock_bh(&ifp->lock);
|
|
spin_lock_bh(&ifp->lock);
|
|
ifp->flags &= ~IFA_F_TENTATIVE;
|
|
ifp->flags &= ~IFA_F_TENTATIVE;
|
|
@@ -2637,7 +2638,8 @@ static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
|
|
- ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
|
|
|
|
|
|
+ ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags,
|
|
|
|
+ INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
|
|
if (!IS_ERR(ifp)) {
|
|
if (!IS_ERR(ifp)) {
|
|
addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
|
|
addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
|
|
addrconf_dad_start(ifp);
|
|
addrconf_dad_start(ifp);
|