diff options
author | Jan Kara <jack@suse.cz> | 2008-04-28 05:14:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:33 -0400 |
commit | 8794b5b246cf6f67baf57bd9db386e79ca5cac33 (patch) | |
tree | 5e986c10f3c62ef9b0e97546493490a584710b06 /fs/namespace.c | |
parent | 338bf9afda91ec005a1e9a0de4af0271cc167d56 (diff) |
quota: remove superfluous DQUOT_OFF() in fs/namespace.c
We don't need to turn quotas off before remounting root ro, because
do_remount_sb() already handles this.
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>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r-- | fs/namespace.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index f48f98110c30..fe376805cf5f 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include <linux/smp_lock.h> | 14 | #include <linux/smp_lock.h> |
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
17 | #include <linux/quotaops.h> | ||
18 | #include <linux/acct.h> | 17 | #include <linux/acct.h> |
19 | #include <linux/capability.h> | 18 | #include <linux/capability.h> |
20 | #include <linux/cpumask.h> | 19 | #include <linux/cpumask.h> |
@@ -1084,7 +1083,6 @@ static int do_umount(struct vfsmount *mnt, int flags) | |||
1084 | down_write(&sb->s_umount); | 1083 | down_write(&sb->s_umount); |
1085 | if (!(sb->s_flags & MS_RDONLY)) { | 1084 | if (!(sb->s_flags & MS_RDONLY)) { |
1086 | lock_kernel(); | 1085 | lock_kernel(); |
1087 | DQUOT_OFF(sb); | ||
1088 | retval = do_remount_sb(sb, MS_RDONLY, NULL, 0); | 1086 | retval = do_remount_sb(sb, MS_RDONLY, NULL, 0); |
1089 | unlock_kernel(); | 1087 | unlock_kernel(); |
1090 | } | 1088 | } |