Re: [PATCH] ctnetlink: fix list traversal order

2005-08-05 Thread David S. Miller
From: Harald Welte <[EMAIL PROTECTED]> Date: Fri, 5 Aug 2005 18:26:50 +0200 > [NETFILTER] fix list traversal order in ctnetlink Applied. - 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

[PATCH] ctnetlink: fix list traversal order

2005-08-05 Thread Harald Welte
Hi Dave, please apply. [NETFILTER] fix list traversal order in ctnetlink Currently conntracks are inserted after the head. That means that conntracks are sorted from the biggest to the smallest id. This happens because we use list_prepend (list_add) instead list_add_tail. This can result in probl