[TCP]: Use old definition of before
authorGerrit Renker <gerrit@erg.abdn.ac.uk>
Thu, 4 Jan 2007 20:25:16 +0000 (12:25 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 Jan 2007 20:25:16 +0000 (12:25 -0800)
This reverts the new (unambiguous) definition of the TCP `before'
relation. As pointed out in an example by Herbert Xu, there is
existing code which implicitly requires the old definition in order
to work correctly.

Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/tcp.h

index b7d8317..cd8fa0c 100644 (file)
@@ -242,7 +242,7 @@ extern int tcp_memory_pressure;
 
 static inline int before(__u32 seq1, __u32 seq2)
 {
-        return (__s32)(seq2-seq1) > 0;
+        return (__s32)(seq1-seq2) < 0;
 }
 #define after(seq2, seq1)      before(seq1, seq2)