Home
last modified time | relevance | path

Searched hist:"773 e82f6cdb026282ff7d26aaac291a5fa84ee3a" (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/scsi/
H A Dscsi_scan.cdiff 773e82f6cdb026282ff7d26aaac291a5fa84ee3a Mon Jul 21 09:58:30 CEST 2008 Julia Lawall <julia@diku.dk> [SCSI] scsi_scan.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 that makes this change 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: James Bottomley <James.Bottomley@HansenPartnership.com>