>From c7d9161350188c8132210eea5c7f6edff94e6c9c Mon Sep 17 00:00:00 2001 From: Tim Gardner <tim.gardner@xxxxxxxxxxxxx> 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@xxxxxxxxxxxxx> --- 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 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html