75117528 -0700
net/rds: Add missing mutex_unlock
Add a mutex_unlock missing on the error path. In each case, whenever the
label out is reached from elsewhere in the function, mutex is not locked.
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
Reviewed-by: Zach Brown
Acked-by: Andy Grover
Signed-off-by: David S. Miller
ظه
„”6x