linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] 2.6.39-rc7+ fs: Fix spinlock recursion in get_active_super()
@ 2011-05-18 16:35 Tim Gardner
  2011-05-18 18:15 ` Christoph Hellwig
  2011-05-18 23:06 ` Al Viro
  0 siblings, 2 replies; 4+ messages in thread
From: Tim Gardner @ 2011-05-18 16:35 UTC (permalink / raw)
  To: viro; +Cc: linux-fsdevel, linux-kernel

>From c7d9161350188c8132210eea5c7f6edff94e6c9c Mon Sep 17 00:00:00 2001
From: Tim Gardner <tim.gardner@canonical.com>
Date: Wed, 18 May 2011 10:30:02 -0600
Subject: [PATCH] fs: Fix spinlock recursion in get_active_super()

Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
---
 fs/super.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/super.c b/fs/super.c
index 8a06881..e203e2d 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -503,8 +503,8 @@ struct super_block *get_active_super(struct block_device *bdev)
 	if (!bdev)
 		return NULL;
 
-restart:
 	spin_lock(&sb_lock);
+restart:
 	list_for_each_entry(sb, &super_blocks, s_list) {
 		if (list_empty(&sb->s_instances))
 			continue;
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-18 23:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-18 16:35 [PATCH 1/1] 2.6.39-rc7+ fs: Fix spinlock recursion in get_active_super() Tim Gardner
2011-05-18 18:15 ` Christoph Hellwig
2011-05-18 18:51   ` Tim Gardner
2011-05-18 23:06 ` Al Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).