From: Julia Lawall Date: Mon, 29 Mar 2010 05:35:05 +0000 (+0000) Subject: drivers/net: Add missing unlock X-Git-Tag: v2.6.34-rc4~64^2~18 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce6fbdefb68d46db88170494b277551f955b48e2;p=pandora-kernel.git drivers/net: Add missing unlock Unlock the lock before leaving the function. A simplified version of the semantic patch that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @r exists@ expression E1; identifier f; @@ f (...) { <+... * spin_lock_irqsave (E1,...); ... when != E1 * return ...; ...+> } // Signed-off-by: Julia Lawall Signed-off-by: David S. Miller --- Reading git-diff-tree failed