[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070907102118.GA27780@iris.sw.ru>
Date: Fri, 7 Sep 2007 14:21:18 +0400
From: "Denis V. Lunev" <den@...nvz.org>
To: den@...nvz.org, adobriyan@...nvz.org, xemul@...nvz.org,
dev@...nvz.org, kuznet@....inr.ac.ru, yoshfuji@...ux-ipv6.org,
davem@...emloft.net
Cc: netdev@...r.kernel.org, devel@...nvz.org
Subject: [PATCH] Freeing alive inet6 address
From: Denis V. Lunev <den@...nvz.org>
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 <den@...nvz.org>
Signed-off-by: Alexey Dobriyan <adobriyan@...nvz.org>
--- ./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 majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists