Displaying 1 result from an estimated 1 matches for "transaction_map_radix".
2007 Aug 09
1
[RFC] All my fsync changes
...tree.h
--- a/ctree.h Wed Aug 08 20:17:12 2007 -0400
+++ b/ctree.h Thu Aug 09 16:18:12 2007 -0400
@@ -300,6 +300,7 @@ struct btrfs_fs_info {
struct radix_tree_root block_group_data_radix;
struct radix_tree_root extent_map_radix;
struct radix_tree_root extent_ins_radix;
+ struct radix_tree_root transaction_map_radix;
u64 generation;
struct btrfs_transaction *running_transaction;
struct btrfs_super_block *disk_super;
diff -r f6da57af2473 disk-io.c
--- a/disk-io.c Wed Aug 08 20:17:12 2007 -0400
+++ b/disk-io.c Thu Aug 09 16:52:26 2007 -0400
@@ -431,6 +431,7 @@ struct btrfs_root *open_ctree(struct sup
INI...