MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / rb_link_node

Function rb_link_node

Ext4Fsd/include/linux/rbtree.h:149–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

147 struct rb_root *root);
148
149static 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
158extern void rb_insert(struct rb_root *root, struct rb_node *node,
159 int (*cmp)(struct rb_node *, struct rb_node *));

Callers 2

rb_insertFunction · 0.85
ext3_htree_store_direntFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected