From: Julia Lawall Date: Wed, 26 May 2010 15:54:39 +0000 (+0200) Subject: fs: Add missing mutex_unlock X-Git-Tag: v2.6.35-rc1~27^2~12 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc967be54710d97c05229b2e5ba2d00df84ddd64;p=pandora-kernel.git fs: Add missing mutex_unlock Add a mutex_unlock missing on the error path. At other exists from the function that return an error flag, the mutex is unlocked, so do the same here. The semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression E1; @@ * mutex_lock(E1,...); <+... when != E1 if (...) { ... when != E1 * return ...; } ...+> * mutex_unlock(E1,...); // Signed-off-by: Julia Lawall Signed-off-by: Al Viro --- Reading git-diff-tree failed