summaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2010-12-16 02:28:48 +0100
committerTheodore Ts'o <tytso@mit.edu>2010-12-16 02:28:48 +0100
commit673c610033a8202c037ecd068c7a235495acda17 (patch)
treee47ca541bf33f1d43d4ced9b72d6100853896236 /fs/ext4/super.c
parentext4: Simplify the usage of clear_opt() and set_opt() macros (diff)
downloadlinux-673c610033a8202c037ecd068c7a235495acda17.tar.xz
linux-673c610033a8202c037ecd068c7a235495acda17.zip
ext4: Move struct ext4_mount_options from ext4.h to super.c
Move the ext4_mount_options structure definition from ext4.h, since it is only used in super.c. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to '')
-rw-r--r--fs/ext4/super.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index cf7d9131d785..7aa3a790363a 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -4166,6 +4166,21 @@ static int ext4_unfreeze(struct super_block *sb)
return 0;
}
+/*
+ * Structure to save mount options for ext4_remount's benefit
+ */
+struct ext4_mount_options {
+ unsigned long s_mount_opt;
+ uid_t s_resuid;
+ gid_t s_resgid;
+ unsigned long s_commit_interval;
+ u32 s_min_batch_time, s_max_batch_time;
+#ifdef CONFIG_QUOTA
+ int s_jquota_fmt;
+ char *s_qf_names[MAXQUOTAS];
+#endif
+};
+
static int ext4_remount(struct super_block *sb, int *flags, char *data)
{
struct ext4_super_block *es;