summaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorDavid S. Miller2010-03-26 05:25:30 +0100
committerDavid S. Miller2010-03-26 05:25:30 +0100
commitb54c9b98bbfb4836b1f7441c5a9db24affd3c2e9 (patch)
treefb8a994a46df0a0393fb31efe313577dac5ef2e0 /net/ipv6
parentrps: add CONFIG_RPS (diff)
downloadkernel-qcow2-linux-b54c9b98bbfb4836b1f7441c5a9db24affd3c2e9.tar.gz
kernel-qcow2-linux-b54c9b98bbfb4836b1f7441c5a9db24affd3c2e9.tar.xz
kernel-qcow2-linux-b54c9b98bbfb4836b1f7441c5a9db24affd3c2e9.zip
ipv6: Preserve pervious behavior in ipv6_link_dev_addr().
Use list_add_tail() to get the behavior we had before the list_head conversion for ipv6 address lists. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/addrconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index 68e5809a2153..999568344721 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -578,7 +578,7 @@ ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
break;
}
- list_add(&ifp->if_list, p);
+ list_add_tail(&ifp->if_list, p);
}
static u32 ipv6_addr_hash(const struct in6_addr *addr)