| 147 | struct rb_root *root); |
| 148 | |
| 149 | static inline void rb_link_node(struct rb_node * node, struct rb_node * parent, |
| 150 | struct rb_node ** rb_link) |
| 151 | { |
| 152 | node->rb_parent_color = (ULONG_PTR )parent; |
| 153 | node->rb_left = node->rb_right = NULL; |
| 154 | |
| 155 | *rb_link = node; |
| 156 | } |
| 157 | |
| 158 | extern void rb_insert(struct rb_root *root, struct rb_node *node, |
| 159 | int (*cmp)(struct rb_node *, struct rb_node *)); |
no outgoing calls
no test coverage detected