Lines Matching defs:root
25 drbd_insert_interval(struct rb_root *root, struct drbd_interval *this)
27 struct rb_node **new = &root->rb_node, *parent = NULL;
53 rb_insert_augmented(&this->rb, root, &augment_callbacks);
59 * @root: red black tree root
69 drbd_contains_interval(struct rb_root *root, sector_t sector,
72 struct rb_node *node = root->rb_node;
96 drbd_remove_interval(struct rb_root *root, struct drbd_interval *this)
102 rb_erase_augmented(&this->rb, root, &augment_callbacks);
107 * @root: red black tree root
118 drbd_find_overlap(struct rb_root *root, sector_t sector, unsigned int size)
120 struct rb_node *node = root->rb_node;