mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
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>
This commit is contained in:
parent
df3345457a
commit
b54c9b98bb
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue