commit | ce6fbdefb68d46db88170494b277551f955b48e2 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Mon Mar 29 05:35:05 2010 +0000 |
committer | David S. Miller <davem@davemloft.net> | Tue Mar 30 23:03:18 2010 -0700 |
tree | 518b920f15c6cb00717767b521f3f596babfe34d | |
parent | ddc01b3b8ab224b346daf61976078b166f36b7e8 [diff] |
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/) // <smpl> @r exists@ expression E1; identifier f; @@ f (...) { <+... * spin_lock_irqsave (E1,...); ... when != E1 * return ...; ...+> } // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: David S. Miller <davem@davemloft.net>