From 7616d87ab06e095b46ab979b66bf8b4dbb33cad3 Mon Sep 17 00:00:00 2001 From: Michael Blizek Date: Sun, 21 Feb 2010 14:39:07 +0100 Subject: [PATCH] rcv reorder queue bugfix --- net/cor/rcv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/cor/rcv.c b/net/cor/rcv.c index d922b319688..acfd4602886 100644 --- a/net/cor/rcv.c +++ b/net/cor/rcv.c @@ -97,7 +97,7 @@ static int _conn_rcv_ooo(struct sk_buff *skb) while (1) { struct skb_procstate *ps2 = skb_pstate(curr); - if ((void *) curr != (void *) reorder_queue) { + if ((void *) curr == (void *) reorder_queue) { skb_queue_tail(reorder_queue, skb); break; } -- 2.11.4.GIT