diff options
author | Qu Wenruo <quwenruo@cn.fujitsu.com> | 2014-01-05 20:58:33 -0500 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2014-01-28 16:20:20 -0500 |
commit | a88998f291fc707f18ee42ae45220a3a3e384c27 (patch) | |
tree | bb4d7726e4d56e970bd1d1864afe999333037cee /fs/btrfs/super.c | |
parent | d399167d88ea53590d6c0850b2d5534cbd21da02 (diff) |
btrfs: Add treelog mount option.
Add treelog mount option to enable tree log with
remount option.
Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Reviewed-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index e84e6cb57526..16d7fc751ba8 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
@@ -325,7 +325,7 @@ enum { | |||
325 | Opt_check_integrity_print_mask, Opt_fatal_errors, Opt_rescan_uuid_tree, | 325 | Opt_check_integrity_print_mask, Opt_fatal_errors, Opt_rescan_uuid_tree, |
326 | Opt_commit_interval, Opt_barrier, Opt_nodefrag, Opt_nodiscard, | 326 | Opt_commit_interval, Opt_barrier, Opt_nodefrag, Opt_nodiscard, |
327 | Opt_noenospc_debug, Opt_noflushoncommit, Opt_acl, Opt_datacow, | 327 | Opt_noenospc_debug, Opt_noflushoncommit, Opt_acl, Opt_datacow, |
328 | Opt_datasum, | 328 | Opt_datasum, Opt_treelog, |
329 | Opt_err, | 329 | Opt_err, |
330 | }; | 330 | }; |
331 | 331 | ||
@@ -353,6 +353,7 @@ static match_table_t tokens = { | |||
353 | {Opt_acl, "acl"}, | 353 | {Opt_acl, "acl"}, |
354 | {Opt_noacl, "noacl"}, | 354 | {Opt_noacl, "noacl"}, |
355 | {Opt_notreelog, "notreelog"}, | 355 | {Opt_notreelog, "notreelog"}, |
356 | {Opt_treelog, "treelog"}, | ||
356 | {Opt_flushoncommit, "flushoncommit"}, | 357 | {Opt_flushoncommit, "flushoncommit"}, |
357 | {Opt_noflushoncommit, "noflushoncommit"}, | 358 | {Opt_noflushoncommit, "noflushoncommit"}, |
358 | {Opt_ratio, "metadata_ratio=%d"}, | 359 | {Opt_ratio, "metadata_ratio=%d"}, |
@@ -579,6 +580,11 @@ int btrfs_parse_options(struct btrfs_root *root, char *options) | |||
579 | btrfs_info(root->fs_info, "disabling tree log"); | 580 | btrfs_info(root->fs_info, "disabling tree log"); |
580 | btrfs_set_opt(info->mount_opt, NOTREELOG); | 581 | btrfs_set_opt(info->mount_opt, NOTREELOG); |
581 | break; | 582 | break; |
583 | case Opt_treelog: | ||
584 | if (btrfs_test_opt(root, NOTREELOG)) | ||
585 | btrfs_info(root->fs_info, "enabling tree log"); | ||
586 | btrfs_clear_opt(info->mount_opt, NOTREELOG); | ||
587 | break; | ||
582 | case Opt_flushoncommit: | 588 | case Opt_flushoncommit: |
583 | btrfs_info(root->fs_info, "turning on flush-on-commit"); | 589 | btrfs_info(root->fs_info, "turning on flush-on-commit"); |
584 | btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT); | 590 | btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT); |