Displaying 1 result from an estimated 1 matches for "tree_mod_log_eb_copy".
2013 May 22
0
[PATCH 1/2] Btrfs: dont do log_removal in insert_new_root
...lets make a new one
*
- * tree mod log: We pass 0 as log_removal parameter to
+ * tree mod log: We don''t log_removal old root in
* insert_new_root, because that root buffer will be kept as a
* normal node. We are going to log removal of half of the
* elements below with tree_mod_log_eb_copy. We''re holding a
* tree lock on the buffer, which is why we cannot race with
* other tree_mod_log users.
*/
- ret = insert_new_root(trans, root, path, level + 1, 0);
+ ret = insert_new_root(trans, root, path, level + 1);
if (ret)
return ret;
} else {
@@ -4005,7 +4005...