summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/transaction.c
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@fb.com>2014-12-16 11:54:43 -0500
committerChris Mason <clm@fb.com>2015-01-21 20:35:49 -0500
commite7070be198b34c26f39bd9010a29ce6462dc4f3e (patch)
treea51e6fa1170a2a5b3a3c0aa3e38626287904070f /fs/btrfs/transaction.c
parentec6f34e5b552fb0a52e6aae1a5afbbb1605cc6cc (diff)
Btrfs: change how we track dirty roots
I've been overloading root->dirty_list to keep track of dirty roots and which roots need to have their commit roots switched at transaction commit time. This could cause us to lose an update to the root which could corrupt the file system. To fix this use a state bit to know if the root is dirty, and if it isn't set we go ahead and move the root to the dirty list. This way if we re-dirty the root after adding it to the switch_commit list we make sure to update it. This also makes it so that the extent root is always the last root on the dirty list to try and keep the amount of churn down at this point in the commit. Thanks, Signed-off-by: Josef Bacik <jbacik@fb.com> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/transaction.c')
-rw-r--r--fs/btrfs/transaction.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c
index a605d4e2f2bc..aa2219ebecc9 100644
--- a/fs/btrfs/transaction.c
+++ b/fs/btrfs/transaction.c
@@ -1020,6 +1020,7 @@ static int update_cowonly_root(struct btrfs_trans_handle *trans,
1020 u64 old_root_bytenr; 1020 u64 old_root_bytenr;
1021 u64 old_root_used; 1021 u64 old_root_used;
1022 struct btrfs_root *tree_root = root->fs_info->tree_root; 1022 struct btrfs_root *tree_root = root->fs_info->tree_root;
1023 bool extent_root = (root->objectid == BTRFS_EXTENT_TREE_OBJECTID);
1023 1024
1024 old_root_used = btrfs_root_used(&root->root_item); 1025 old_root_used = btrfs_root_used(&root->root_item);
1025 btrfs_write_dirty_block_groups(trans, root); 1026 btrfs_write_dirty_block_groups(trans, root);
@@ -1038,7 +1039,12 @@ static int update_cowonly_root(struct btrfs_trans_handle *trans,
1038 return ret; 1039 return ret;
1039 1040
1040 old_root_used = btrfs_root_used(&root->root_item); 1041 old_root_used = btrfs_root_used(&root->root_item);
1041 ret = btrfs_write_dirty_block_groups(trans, root); 1042 if (extent_root) {
1043 ret = btrfs_write_dirty_block_groups(trans, root);
1044 if (ret)
1045 return ret;
1046 }
1047 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1042 if (ret) 1048 if (ret)
1043 return ret; 1049 return ret;
1044 } 1050 }
@@ -1097,6 +1103,7 @@ static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
1097 next = fs_info->dirty_cowonly_roots.next; 1103 next = fs_info->dirty_cowonly_roots.next;
1098 list_del_init(next); 1104 list_del_init(next);
1099 root = list_entry(next, struct btrfs_root, dirty_list); 1105 root = list_entry(next, struct btrfs_root, dirty_list);
1106 clear_bit(BTRFS_ROOT_DIRTY, &root->state);
1100 1107
1101 if (root != fs_info->extent_root) 1108 if (root != fs_info->extent_root)
1102 list_add_tail(&root->dirty_list, 1109 list_add_tail(&root->dirty_list,