search for: shared_ref_tree

Displaying 2 results from an estimated 2 matches for "shared_ref_tree".

2008 Sep 25
0
[PATCH 2/4] Add shared reference cache
...ist; }; +struct btrfs_leaf_ref_tree { + struct rb_root root; + struct list_head list; + spinlock_t lock; +}; + struct btrfs_device; struct btrfs_fs_devices; struct btrfs_fs_info { @@ -637,6 +647,8 @@ struct task_struct *cleaner_kthread; int thread_pool_size; + struct btrfs_leaf_ref_tree shared_ref_tree; + struct kobject super_kobj; struct completion kobj_unregister; int do_barriers; @@ -668,13 +680,6 @@ u64 system_alloc_profile; void *bdev_holder; -}; - -struct btrfs_leaf_ref_tree { - struct rb_root root; - struct btrfs_leaf_ref *last; - struct list_head list; - spinlock_t lock; };...
2009 Oct 16
1
Building btrfs-unstable.git against 2.6.31?
.../jdong/code/kernel/btrfs-0.17/ref-cache.c: In function ‘btrfs_remove_leaf_refs’: /home/jdong/code/kernel/btrfs-0.17/ref-cache.c:123: error: ‘struct btrfs_root’ has no member named ‘ref_tree’ /home/jdong/code/kernel/btrfs-0.17/ref-cache.c:126: error: ‘struct btrfs_fs_info’ has no member named ‘shared_ref_tree’ And so on. Am I not supposed to be building btrfs this way? Sorry for the potentially braindead obvious question :) John Dong-- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http...