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.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index b9aefceb41e7..45d07cf9df34 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -816,8 +816,6 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
816 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL)) 816 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
817 seq_puts(seq, ",noacl"); 817 seq_puts(seq, ",noacl");
818#endif 818#endif
819 if (!test_opt(sb, RESERVATION))
820 seq_puts(seq, ",noreservation");
821 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) { 819 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
822 seq_printf(seq, ",commit=%u", 820 seq_printf(seq, ",commit=%u",
823 (unsigned) (sbi->s_commit_interval / HZ)); 821 (unsigned) (sbi->s_commit_interval / HZ));
@@ -868,6 +866,9 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
868 if (test_opt(sb, DATA_ERR_ABORT)) 866 if (test_opt(sb, DATA_ERR_ABORT))
869 seq_puts(seq, ",data_err=abort"); 867 seq_puts(seq, ",data_err=abort");
870 868
869 if (test_opt(sb, NO_AUTO_DA_ALLOC))
870 seq_puts(seq, ",auto_da_alloc=0");
871
871 ext4_show_quota_options(seq, sb); 872 ext4_show_quota_options(seq, sb);
872 return 0; 873 return 0;
873} 874}
@@ -1017,7 +1018,7 @@ enum {
1017 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro, 1018 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
1018 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov, 1019 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
1019 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl, 1020 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
1020 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh, 1021 Opt_auto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
1021 Opt_commit, Opt_min_batch_time, Opt_max_batch_time, 1022 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
1022 Opt_journal_update, Opt_journal_dev, 1023 Opt_journal_update, Opt_journal_dev,
1023 Opt_journal_checksum, Opt_journal_async_commit, 1024 Opt_journal_checksum, Opt_journal_async_commit,
@@ -1052,8 +1053,6 @@ static const match_table_t tokens = {
1052 {Opt_nouser_xattr, "nouser_xattr"}, 1053 {Opt_nouser_xattr, "nouser_xattr"},
1053 {Opt_acl, "acl"}, 1054 {Opt_acl, "acl"},
1054 {Opt_noacl, "noacl"}, 1055 {Opt_noacl, "noacl"},
1055 {Opt_reservation, "reservation"},
1056 {Opt_noreservation, "noreservation"},
1057 {Opt_noload, "noload"}, 1056 {Opt_noload, "noload"},
1058 {Opt_nobh, "nobh"}, 1057 {Opt_nobh, "nobh"},
1059 {Opt_bh, "bh"}, 1058 {Opt_bh, "bh"},
@@ -1088,6 +1087,7 @@ static const match_table_t tokens = {
1088 {Opt_nodelalloc, "nodelalloc"}, 1087 {Opt_nodelalloc, "nodelalloc"},
1089 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"}, 1088 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
1090 {Opt_journal_ioprio, "journal_ioprio=%u"}, 1089 {Opt_journal_ioprio, "journal_ioprio=%u"},
1090 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
1091 {Opt_err, NULL}, 1091 {Opt_err, NULL},
1092}; 1092};
1093 1093
@@ -1220,12 +1220,6 @@ static int parse_options(char *options, struct super_block *sb,
1220 "not supported\n"); 1220 "not supported\n");
1221 break; 1221 break;
1222#endif 1222#endif
1223 case Opt_reservation:
1224 set_opt(sbi->s_mount_opt, RESERVATION);
1225 break;
1226 case Opt_noreservation:
1227 clear_opt(sbi->s_mount_opt, RESERVATION);
1228 break;
1229 case Opt_journal_update: 1223 case Opt_journal_update:
1230 /* @@@ FIXME */ 1224 /* @@@ FIXME */
1231 /* Eventually we will want to be able to create 1225 /* Eventually we will want to be able to create
@@ -1491,6 +1485,14 @@ set_qf_format:
1491 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 1485 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1492 option); 1486 option);
1493 break; 1487 break;
1488 case Opt_auto_da_alloc:
1489 if (match_int(&args[0], &option))
1490 return 0;
1491 if (option)
1492 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1493 else
1494 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1495 break;
1494 default: 1496 default:
1495 printk(KERN_ERR 1497 printk(KERN_ERR
1496 "EXT4-fs: Unrecognized mount option \"%s\" " 1498 "EXT4-fs: Unrecognized mount option \"%s\" "
@@ -2306,7 +2308,6 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent)
2306 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME; 2308 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2307 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME; 2309 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
2308 2310
2309 set_opt(sbi->s_mount_opt, RESERVATION);
2310 set_opt(sbi->s_mount_opt, BARRIER); 2311 set_opt(sbi->s_mount_opt, BARRIER);
2311 2312
2312 /* 2313 /*