From: Denis V. Lunev <[EMAIL PROTECTED]> addrconf_dad_failure calls addrconf_dad_stop which takes referenced address and drops the count. So, in6_ifa_put perrformed at out: is extra. This results in message: "Freeing alive inet6 address" and not released dst entries.
Signed-off-by: Denis V. Lunev <[EMAIL PROTECTED]> Signed-off-by: Alexey Dobriyan <[EMAIL PROTECTED]> --- ./net/ipv6/ndisc.c.ipv6dad 2007-09-03 16:54:32.000000000 +0400 +++ ./net/ipv6/ndisc.c 2007-09-07 13:34:30.000000000 +0400 @@ -736,7 +736,7 @@ static void ndisc_recv_ns(struct sk_buff * so fail our DAD process */ addrconf_dad_failure(ifp); - goto out; + return; } else { /* * This is not a dad solicitation. - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html