linux/drivers/net/ehea
Julia Lawall 68905eb4dc drivers/net/ehea/ehea_main.c: Release mutex in error handling code
The mutex is released on a successful return, so it would seem that it
should be released on an error return as well.

The semantic patch finds this problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
expression l;
@@

mutex_lock(l);
... when != mutex_unlock(l)
    when any
    when strict
(
if (...) { ... when != mutex_unlock(l)
+   mutex_unlock(l);
    return ...;
}
|
mutex_unlock(l);
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
2008-07-30 17:23:39 -04:00
..
Makefile
ehea.h ehea: fix race condition 2008-07-04 08:10:41 -04:00
ehea_ethtool.c ehea: fix ethtool checkpatch complaints 2008-02-03 04:25:56 -08:00
ehea_hcall.h
ehea_hw.h ehea: fix ehea.h checkpatch complaints 2008-02-03 04:25:55 -08:00
ehea_main.c drivers/net/ehea/ehea_main.c: Release mutex in error handling code 2008-07-30 17:23:39 -04:00
ehea_phyp.c ehea: fix phyp checkpatch complaints 2008-02-03 04:25:57 -08:00
ehea_phyp.h ehea: fix phyp checkpatch complaints 2008-02-03 04:25:57 -08:00
ehea_qmr.c ehea: Add DLPAR memory remove support 2008-05-13 01:31:39 -04:00
ehea_qmr.h ehea: fix qmr checkpatch complaints 2008-02-03 04:25:58 -08:00