From: "David S. Miller" <[EMAIL PROTECTED]>
Date: Wed, 21 Dec 2005 21:56:05 -0800 (PST)
> + while (tail)
> + tail = tail->next;
Of course this is buggy, it should be:
while (tail->next)
tail = tail->next;
So if you test ple
Miyazawa-san, I did not forget about this bug! :-)
To recall, the problem is that when new policies are inserted,
sockets do not see the update (but all new route lookups do).
This bug is related to the SA insertion stale route issue solved
recently, and this policy visibility problem can be fix