Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b54c9b98 authored by David S. Miller's avatar David S. Miller
Browse files

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: default avatarDavid S. Miller <davem@davemloft.net>
parent df334545
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)