aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/filesystems/btrfs.txt3
-rw-r--r--fs/btrfs/super.c8
2 files changed, 9 insertions, 2 deletions
diff --git a/Documentation/filesystems/btrfs.txt b/Documentation/filesystems/btrfs.txt
index e05c6aecc0cc..d11cc2f8077b 100644
--- a/Documentation/filesystems/btrfs.txt
+++ b/Documentation/filesystems/btrfs.txt
@@ -164,8 +164,9 @@ Options with (*) are default options and will not show in the mount options.
164 Enable/disable data checksumming for newly created files. 164 Enable/disable data checksumming for newly created files.
165 Datasum implies datacow. 165 Datasum implies datacow.
166 166
167 treelog(*)
167 notreelog 168 notreelog
168 Disable the tree logging used for fsync and O_SYNC writes. 169 Enable/disable the tree logging used for fsync and O_SYNC writes.
169 170
170 recovery 171 recovery
171 Enable autorecovery attempts if a bad tree root is found at mount time. 172 Enable autorecovery attempts if a bad tree root is found at mount time.
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);