From: Julia Lawall Date: Tue, 28 Jul 2009 15:53:24 +0000 (+0200) Subject: KVM: correct error-handling code X-Git-Tag: v2.6.32-rc1~693^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6223011fb9f90fab92635f1f782196cbd2ccf24f;p=pandora-kernel.git KVM: correct error-handling code This code is not executed before file has been initialized to the result of calling eventfd_fget. This function returns an ERR_PTR value in an error case instead of NULL. Thus the test that file is not NULL is always true. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @match exists@ expression x, E; statement S1, S2; @@ x = eventfd_fget(...) ... when != x = E ( * if (x == NULL || ...) S1 else S2 | * if (x == NULL && ...) S1 else S2 ) // Signed-off-by: Julia Lawall Signed-off-by: Avi Kivity --- Reading git-diff-tree failed