summary refs log tree commit diff
path: root/kernel/early_res.c
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2010-03-29 17:37:02 +0200
committerSteven Rostedt <rostedt@goodmis.org>2010-03-29 15:23:24 -0400
commit292f60c0c4ab44aa2d589ba03c12e64a3b3c5e38 (patch)
tree0c33c9b23202a27c768dee45776503c9ec6b8306 /kernel/early_res.c
parente36673ec5126f15a8cddf6049aede7bdcf484c26 (diff)
downloadlinux-292f60c0c4ab44aa2d589ba03c12e64a3b3c5e38.tar.gz
ring-buffer: Add missing unlock
In some error handling cases the lock is not unlocked.  The return is
converted to a goto, to share the unlock at the end of 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_irq (E1,...);
... when != E1
* return ...;
...+> }
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
LKML-Reference: <Pine.LNX.4.64.1003291736440.21896@ask.diku.dk>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/early_res.c')
0 files changed, 0 insertions, 0 deletions