Re: Problem mounting ext2 using ext3?

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Jan Kara
Date: Tuesday, May 6, 2008 - 3:02 am

On Mon 05-05-08 18:26:23, Theodore Tso wrote:
  Thanks Ted for looking into this. Yes, the problem is caused by my
modifications to quota code... The patch below fixes it for me and I've
also added a comment so that someone does not remove the check again in
future ;).

								Honza
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR
---

From af9d1ac1db9acea1516350d4269796061e0f2ab5 Mon Sep 17 00:00:00 2001
From: Jan Kara <jack@suse.cz>
Date: Tue, 6 May 2008 11:33:00 +0200
Subject: [PATCH] quota: Don't call sync_fs() from vfs_quota_off() when there's no quota turn off

Sometimes, vfs_quota_off() is called on a partially set up super block (for example
when fill_super() fails for some reason). In such cases we cannot call ->sync_fs()
because it can Oops because of not properly filled in super block. So in case we
find there's not quota to turn off, we just skip everything and return which fixes
the above problem.

Signed-off-by: Jan Kara <jack@suse.cz>
---
 fs/dquot.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/fs/dquot.c b/fs/dquot.c
index dfba162..bdcb15e 100644
--- a/fs/dquot.c
+++ b/fs/dquot.c
@@ -1491,6 +1491,16 @@ int vfs_quota_off(struct super_block *sb, int type, int remount)
 
 	/* We need to serialize quota_off() for device */
 	mutex_lock(&dqopt->dqonoff_mutex);
+
+	/*
+	 * Skip everything if there's nothing to do. We have to do this becase
+	 * sometimes we are called when fill_super() failed and calling
+	 * sync_fs() in such cases does no good.
+	 */
+	if (!sb_any_quota_enabled(sb) && !sb_any_quota_suspended(sb)) {
+		mutex_unlock(&dqopt->dqonoff_mutex);
+		return 0;
+	}
 	for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
 		toputinode[cnt] = NULL;
 		if (type != -1 && cnt != type)
-- 
1.5.2.4

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Problem mounting ext2 using ext3?, Geert Uytterhoeven, (Mon May 5, 2:11 pm)
Re: Problem mounting ext2 using ext3?, Theodore Tso, (Mon May 5, 3:26 pm)
Re: Problem mounting ext2 using ext3?, Geert Uytterhoeven, (Tue May 6, 12:11 am)
Re: Problem mounting ext2 using ext3?, Vegard Nossum, (Tue May 6, 12:26 am)
Re: Problem mounting ext2 using ext3?, Jan Kara, (Tue May 6, 2:50 am)
Re: Problem mounting ext2 using ext3?, Jan Kara, (Tue May 6, 3:02 am)
Re: Problem mounting ext2 using ext3?, Geert Uytterhoeven, (Tue May 6, 4:20 am)
Re: Problem mounting ext2 using ext3?, Theodore Tso, (Tue May 6, 5:05 am)
Re: Problem mounting ext2 using ext3?, Geert Uytterhoeven, (Tue May 6, 12:05 pm)