From: YOSHIFUJI Hideaki Date: Wed, 5 Oct 2005 19:11:41 +0000 (-0700) Subject: [IPV6]: Fix NS handing for proxy/anycast address X-Git-Tag: v2.6.14-rc4~39^2~2 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=140e26fcd559f6988e5a9056385eecade19d9b49;p=powerpc.git [IPV6]: Fix NS handing for proxy/anycast address Timer set up by pneigh_enqueue() ended up calling ndisc_rcv() via pndisc_redo(), which clears LOCALLY_ENQUEUED flag in NEIGH_CB(skb) and NS was queued again. Let's call ndisc_recv_ns() directly to avoid the loop. Signed-off-by: YOSHIFUJI Hideaki Signed-off-by: David S. Miller --- diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 555a31347e..305d9ee6d7 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -1450,7 +1450,7 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh, static void pndisc_redo(struct sk_buff *skb) { - ndisc_rcv(skb); + ndisc_recv_ns(skb); kfree_skb(skb); }