Commit a895254c authored by Hideaki Yoshifuji's avatar Hideaki Yoshifuji Committed by David S. Miller

[IPV6]: Use RFC2553 constant variable.

parent 5123f71c
...@@ -1646,7 +1646,6 @@ static void sit_add_v4_addrs(struct inet6_dev *idev) ...@@ -1646,7 +1646,6 @@ static void sit_add_v4_addrs(struct inet6_dev *idev)
static void init_loopback(struct net_device *dev) static void init_loopback(struct net_device *dev)
{ {
struct in6_addr addr;
struct inet6_dev *idev; struct inet6_dev *idev;
struct inet6_ifaddr * ifp; struct inet6_ifaddr * ifp;
...@@ -1654,15 +1653,12 @@ static void init_loopback(struct net_device *dev) ...@@ -1654,15 +1653,12 @@ static void init_loopback(struct net_device *dev)
ASSERT_RTNL(); ASSERT_RTNL();
memset(&addr, 0, sizeof(struct in6_addr));
addr.s6_addr[15] = 1;
if ((idev = ipv6_find_idev(dev)) == NULL) { if ((idev = ipv6_find_idev(dev)) == NULL) {
printk(KERN_DEBUG "init loopback: add_dev failed\n"); printk(KERN_DEBUG "init loopback: add_dev failed\n");
return; return;
} }
ifp = ipv6_add_addr(idev, &addr, 128, IFA_HOST, IFA_F_PERMANENT); ifp = ipv6_add_addr(idev, &in6addr_loopback, 128, IFA_HOST, IFA_F_PERMANENT);
if (ifp) { if (ifp) {
spin_lock_bh(&ifp->lock); spin_lock_bh(&ifp->lock);
ifp->flags &= ~IFA_F_TENTATIVE; ifp->flags &= ~IFA_F_TENTATIVE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment