From: Julia Lawall Date: Wed, 11 Aug 2010 10:11:24 +0000 (+0200) Subject: [SCSI] drivers/message/fusion: Return -ENOMEM on memory allocation failure X-Git-Tag: v2.6.37-rc1~159^2~66 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c1acab0367d88ad5da2b9db2efdf2699113ec88;p=pandora-kernel.git [SCSI] drivers/message/fusion: Return -ENOMEM on memory allocation failure In this code, 0 is returned on memory allocation failure, even though other failures return -ENOMEM or other similar values. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression ret; expression x,e1,e2,e3; @@ ret = 0 ... when != ret = e1 *x = \(kmalloc\|kcalloc\|kzalloc\)(...) ... when != ret = e2 if (x == NULL) { ... when != ret = e3 return ret; } // Signed-off-by: Julia Lawall Acked-by: "Desai, Kashyap" Signed-off-by: James Bottomley --- Reading git-diff-tree failed