From: Julia Lawall Date: Sun, 12 Jul 2009 07:43:21 +0000 (+0200) Subject: Staging: b3dfg: Drop NULL test on list_entry result X-Git-Tag: v2.6.32-rc1~668^2~523 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=980fd895e63a831bb8f0db8741a19169d9274c75;p=pandora-kernel.git Staging: b3dfg: Drop NULL test on list_entry result list_entry, which is an alias for container_of, cannot return NULL, as there is no way to add a NULL value to a doubly linked list. A simplified version of the semantic match that findds this problem is as follows: (http://www.emn.fr/x-info/coccinelle/) // @r@ expression x,E; statement S1,S2; position p,p1; @@ *x = list_entry@p(...) ... when != x = E *if@p1 (x == NULL) S1 else S2 // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed