Lines Matching defs:root
67 static inline struct rb_node *rb_simple_search(struct rb_root *root, u64 bytenr)
69 struct rb_node *node = root->rb_node;
86 * Search @root from an entry that starts or comes after @bytenr.
88 * @root: the root to search.
94 static inline struct rb_node *rb_simple_search_first(struct rb_root *root,
97 struct rb_node *node = root->rb_node, *ret = NULL;
120 static inline struct rb_node *rb_simple_insert(struct rb_root *root, u64 bytenr,
123 struct rb_node **p = &root->rb_node;
140 rb_insert_color(node, root);