From: Kulikov Vasiliy Date: Sat, 17 Jul 2010 05:21:00 +0000 (+0000) Subject: net: dccp: fix sign bug X-Git-Tag: v2.6.36-rc1~571^2~186 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e64159dfb480b30233d947d5a3cd793dfea738f;p=pandora-kernel.git net: dccp: fix sign bug 'gap' is unsigned, so this code is wrong: gap = -new_head; ... if (gap > 0) { ... } Make 'gap' signed. The semantic patch that finds this problem (many false-positive results): (http://coccinelle.lip6.fr/) // @ r1 @ identifier f; @@ int f(...) { ... } @@ identifier r1.f; type T; unsigned T x; @@ *x = f(...) ... *x > 0 Signed-off-by: Kulikov Vasiliy Signed-off-by: David S. Miller --- Reading git-diff-tree failed