Prev: [PATCH -mm 0/2] misc: don't use sig->count
Next: [PATCH -mm 2/2] keyctl_session_to_parent: use thread_group_empty() to check singlethreadness
From: David Howells on 23 Mar 2010 11:00 From: Dan Carpenter <error27(a)gmail.com> Sparse complained about this missing spin_unlock() Signed-off-by: Dan Carpenter <error27(a)gmail.com> Signed-off-by: David Howells <dhowells(a)redhat.com> --- fs/fscache/page.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fs/fscache/page.c b/fs/fscache/page.c index c598ea4..6980902 100644 --- a/fs/fscache/page.c +++ b/fs/fscache/page.c @@ -881,6 +881,7 @@ submit_failed: goto nobufs; nobufs_unlock_obj: + spin_unlock(&cookie->stores_lock); spin_unlock(&object->lock); nobufs: spin_unlock(&cookie->lock); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |