diff options
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 47 |
1 files changed, 40 insertions, 7 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index dc27d4c613c0..da377f9521bb 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -705,10 +705,19 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs) | |||
705 | #endif | 705 | #endif |
706 | if (!test_opt(sb, RESERVATION)) | 706 | if (!test_opt(sb, RESERVATION)) |
707 | seq_puts(seq, ",noreservation"); | 707 | seq_puts(seq, ",noreservation"); |
708 | if (sbi->s_commit_interval) { | 708 | if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) { |
709 | seq_printf(seq, ",commit=%u", | 709 | seq_printf(seq, ",commit=%u", |
710 | (unsigned) (sbi->s_commit_interval / HZ)); | 710 | (unsigned) (sbi->s_commit_interval / HZ)); |
711 | } | 711 | } |
712 | if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) { | ||
713 | seq_printf(seq, ",min_batch_time=%u", | ||
714 | (unsigned) sbi->s_min_batch_time); | ||
715 | } | ||
716 | if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) { | ||
717 | seq_printf(seq, ",max_batch_time=%u", | ||
718 | (unsigned) sbi->s_min_batch_time); | ||
719 | } | ||
720 | |||
712 | /* | 721 | /* |
713 | * We're changing the default of barrier mount option, so | 722 | * We're changing the default of barrier mount option, so |
714 | * let's always display its mount state so it's clear what its | 723 | * let's always display its mount state so it's clear what its |
@@ -874,7 +883,8 @@ enum { | |||
874 | Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov, | 883 | Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov, |
875 | Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl, | 884 | Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl, |
876 | Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh, | 885 | Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh, |
877 | Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev, | 886 | Opt_commit, Opt_min_batch_time, Opt_max_batch_time, |
887 | Opt_journal_update, Opt_journal_inum, Opt_journal_dev, | ||
878 | Opt_journal_checksum, Opt_journal_async_commit, | 888 | Opt_journal_checksum, Opt_journal_async_commit, |
879 | Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback, | 889 | Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback, |
880 | Opt_data_err_abort, Opt_data_err_ignore, | 890 | Opt_data_err_abort, Opt_data_err_ignore, |
@@ -913,6 +923,8 @@ static const match_table_t tokens = { | |||
913 | {Opt_nobh, "nobh"}, | 923 | {Opt_nobh, "nobh"}, |
914 | {Opt_bh, "bh"}, | 924 | {Opt_bh, "bh"}, |
915 | {Opt_commit, "commit=%u"}, | 925 | {Opt_commit, "commit=%u"}, |
926 | {Opt_min_batch_time, "min_batch_time=%u"}, | ||
927 | {Opt_max_batch_time, "max_batch_time=%u"}, | ||
916 | {Opt_journal_update, "journal=update"}, | 928 | {Opt_journal_update, "journal=update"}, |
917 | {Opt_journal_inum, "journal=%u"}, | 929 | {Opt_journal_inum, "journal=%u"}, |
918 | {Opt_journal_dev, "journal_dev=%u"}, | 930 | {Opt_journal_dev, "journal_dev=%u"}, |
@@ -1131,6 +1143,22 @@ static int parse_options(char *options, struct super_block *sb, | |||
1131 | option = JBD2_DEFAULT_MAX_COMMIT_AGE; | 1143 | option = JBD2_DEFAULT_MAX_COMMIT_AGE; |
1132 | sbi->s_commit_interval = HZ * option; | 1144 | sbi->s_commit_interval = HZ * option; |
1133 | break; | 1145 | break; |
1146 | case Opt_max_batch_time: | ||
1147 | if (match_int(&args[0], &option)) | ||
1148 | return 0; | ||
1149 | if (option < 0) | ||
1150 | return 0; | ||
1151 | if (option == 0) | ||
1152 | option = EXT4_DEF_MAX_BATCH_TIME; | ||
1153 | sbi->s_max_batch_time = option; | ||
1154 | break; | ||
1155 | case Opt_min_batch_time: | ||
1156 | if (match_int(&args[0], &option)) | ||
1157 | return 0; | ||
1158 | if (option < 0) | ||
1159 | return 0; | ||
1160 | sbi->s_min_batch_time = option; | ||
1161 | break; | ||
1134 | case Opt_data_journal: | 1162 | case Opt_data_journal: |
1135 | data_opt = EXT4_MOUNT_JOURNAL_DATA; | 1163 | data_opt = EXT4_MOUNT_JOURNAL_DATA; |
1136 | goto datacheck; | 1164 | goto datacheck; |
@@ -1979,6 +2007,9 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) | |||
1979 | 2007 | ||
1980 | sbi->s_resuid = le16_to_cpu(es->s_def_resuid); | 2008 | sbi->s_resuid = le16_to_cpu(es->s_def_resuid); |
1981 | sbi->s_resgid = le16_to_cpu(es->s_def_resgid); | 2009 | sbi->s_resgid = le16_to_cpu(es->s_def_resgid); |
2010 | sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ; | ||
2011 | sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME; | ||
2012 | sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME; | ||
1982 | 2013 | ||
1983 | set_opt(sbi->s_mount_opt, RESERVATION); | 2014 | set_opt(sbi->s_mount_opt, RESERVATION); |
1984 | set_opt(sbi->s_mount_opt, BARRIER); | 2015 | set_opt(sbi->s_mount_opt, BARRIER); |
@@ -2524,11 +2555,9 @@ static void ext4_init_journal_params(struct super_block *sb, journal_t *journal) | |||
2524 | { | 2555 | { |
2525 | struct ext4_sb_info *sbi = EXT4_SB(sb); | 2556 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
2526 | 2557 | ||
2527 | if (sbi->s_commit_interval) | 2558 | journal->j_commit_interval = sbi->s_commit_interval; |
2528 | journal->j_commit_interval = sbi->s_commit_interval; | 2559 | journal->j_min_batch_time = sbi->s_min_batch_time; |
2529 | /* We could also set up an ext4-specific default for the commit | 2560 | journal->j_max_batch_time = sbi->s_max_batch_time; |
2530 | * interval here, but for now we'll just fall back to the jbd | ||
2531 | * default. */ | ||
2532 | 2561 | ||
2533 | spin_lock(&journal->j_state_lock); | 2562 | spin_lock(&journal->j_state_lock); |
2534 | if (test_opt(sb, BARRIER)) | 2563 | if (test_opt(sb, BARRIER)) |
@@ -3042,6 +3071,8 @@ static int ext4_remount(struct super_block *sb, int *flags, char *data) | |||
3042 | old_opts.s_resuid = sbi->s_resuid; | 3071 | old_opts.s_resuid = sbi->s_resuid; |
3043 | old_opts.s_resgid = sbi->s_resgid; | 3072 | old_opts.s_resgid = sbi->s_resgid; |
3044 | old_opts.s_commit_interval = sbi->s_commit_interval; | 3073 | old_opts.s_commit_interval = sbi->s_commit_interval; |
3074 | old_opts.s_min_batch_time = sbi->s_min_batch_time; | ||
3075 | old_opts.s_max_batch_time = sbi->s_max_batch_time; | ||
3045 | #ifdef CONFIG_QUOTA | 3076 | #ifdef CONFIG_QUOTA |
3046 | old_opts.s_jquota_fmt = sbi->s_jquota_fmt; | 3077 | old_opts.s_jquota_fmt = sbi->s_jquota_fmt; |
3047 | for (i = 0; i < MAXQUOTAS; i++) | 3078 | for (i = 0; i < MAXQUOTAS; i++) |
@@ -3178,6 +3209,8 @@ restore_opts: | |||
3178 | sbi->s_resuid = old_opts.s_resuid; | 3209 | sbi->s_resuid = old_opts.s_resuid; |
3179 | sbi->s_resgid = old_opts.s_resgid; | 3210 | sbi->s_resgid = old_opts.s_resgid; |
3180 | sbi->s_commit_interval = old_opts.s_commit_interval; | 3211 | sbi->s_commit_interval = old_opts.s_commit_interval; |
3212 | sbi->s_min_batch_time = old_opts.s_min_batch_time; | ||
3213 | sbi->s_max_batch_time = old_opts.s_max_batch_time; | ||
3181 | #ifdef CONFIG_QUOTA | 3214 | #ifdef CONFIG_QUOTA |
3182 | sbi->s_jquota_fmt = old_opts.s_jquota_fmt; | 3215 | sbi->s_jquota_fmt = old_opts.s_jquota_fmt; |
3183 | for (i = 0; i < MAXQUOTAS; i++) { | 3216 | for (i = 0; i < MAXQUOTAS; i++) { |