Skip to content

Commit

Permalink
quota: don't call sync_fs() from vfs_quota_off() when there's no quot…
Browse files Browse the repository at this point in the history
…a 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.

[akpm@linux-foundation.org: fxi tpyo]
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Jan Kara authored and Linus Torvalds committed May 13, 2008
1 parent bb45d64 commit 9377abd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions fs/dquot.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 because
* 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)
Expand Down

0 comments on commit 9377abd

Please sign in to comment.