From: Julia Lawall Date: Wed, 26 May 2010 15:57:23 +0000 (+0000) Subject: fs/xfs/quota: Add missing mutex_unlock X-Git-Tag: v2.6.35-rc2~3^2^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38e712ab3d28d79725eaade02fe8aba51abac196;p=pandora-kernel.git fs/xfs/quota: Add missing mutex_unlock Add a mutex_unlock missing on the error path. The use of this lock is balanced elsewhere in the file. 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: Alex Elder --- Reading git-diff-tree failed