aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r--fs/ext4/super.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index fb1e191d0fa9..08d31101eb05 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -3631,11 +3631,9 @@ static int ext4_remount(struct super_block *sb, int *flags, char *data)
3631 } 3631 }
3632 3632
3633 if (*flags & MS_RDONLY) { 3633 if (*flags & MS_RDONLY) {
3634 err = vfs_dq_off(sb, 1); 3634 err = dquot_suspend(sb, -1);
3635 if (err < 0 && err != -ENOSYS) { 3635 if (err < 0)
3636 err = -EBUSY;
3637 goto restore_opts; 3636 goto restore_opts;
3638 }
3639 3637
3640 /* 3638 /*
3641 * First of all, the unconditional stuff we have to do 3639 * First of all, the unconditional stuff we have to do
@@ -3722,7 +3720,7 @@ static int ext4_remount(struct super_block *sb, int *flags, char *data)
3722 unlock_super(sb); 3720 unlock_super(sb);
3723 unlock_kernel(); 3721 unlock_kernel();
3724 if (enable_quota) 3722 if (enable_quota)
3725 vfs_dq_quota_on_remount(sb); 3723 dquot_resume(sb, -1);
3726 return 0; 3724 return 0;
3727 3725
3728restore_opts: 3726restore_opts: