aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r--fs/btrfs/ctree.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index c683aaa925fa..b9f9f815ed09 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -81,6 +81,10 @@ struct btrfs_ordered_sum;
81#define BTRFS_TREE_LOG_OBJECTID -6ULL 81#define BTRFS_TREE_LOG_OBJECTID -6ULL
82#define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL 82#define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
83 83
84/* for space balancing */
85#define BTRFS_TREE_RELOC_OBJECTID -8ULL
86#define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
87
84/* dummy objectid represents multiple objectids */ 88/* dummy objectid represents multiple objectids */
85#define BTRFS_MULTIPLE_OBJECTIDS -255ULL 89#define BTRFS_MULTIPLE_OBJECTIDS -255ULL
86 90
@@ -539,6 +543,12 @@ struct btrfs_block_group_cache {
539 struct list_head list; 543 struct list_head list;
540}; 544};
541 545
546struct btrfs_leaf_ref_tree {
547 struct rb_root root;
548 struct list_head list;
549 spinlock_t lock;
550};
551
542struct btrfs_device; 552struct btrfs_device;
543struct btrfs_fs_devices; 553struct btrfs_fs_devices;
544struct btrfs_fs_info { 554struct btrfs_fs_info {
@@ -637,6 +647,8 @@ struct btrfs_fs_info {
637 struct task_struct *cleaner_kthread; 647 struct task_struct *cleaner_kthread;
638 int thread_pool_size; 648 int thread_pool_size;
639 649
650 struct btrfs_leaf_ref_tree shared_ref_tree;
651
640 struct kobject super_kobj; 652 struct kobject super_kobj;
641 struct completion kobj_unregister; 653 struct completion kobj_unregister;
642 int do_barriers; 654 int do_barriers;
@@ -670,13 +682,6 @@ struct btrfs_fs_info {
670 void *bdev_holder; 682 void *bdev_holder;
671}; 683};
672 684
673struct btrfs_leaf_ref_tree {
674 struct rb_root root;
675 struct btrfs_leaf_ref *last;
676 struct list_head list;
677 spinlock_t lock;
678};
679
680/* 685/*
681 * in ram representation of the tree. extent_root is used for all allocations 686 * in ram representation of the tree. extent_root is used for all allocations
682 * and for the extent tree extent_root root. 687 * and for the extent tree extent_root root.