Lines Matching refs:node
21 exist = rb_entry(*p, struct ceph_string, node); in ceph_find_or_create_string()
32 rb_erase(&exist->node, &string_tree); in ceph_find_or_create_string()
33 RB_CLEAR_NODE(&exist->node); in ceph_find_or_create_string()
56 exist = rb_entry(*p, struct ceph_string, node); in ceph_find_or_create_string()
68 rb_link_node(&cs->node, parent, p); in ceph_find_or_create_string()
69 rb_insert_color(&cs->node, &string_tree); in ceph_find_or_create_string()
71 rb_erase(&exist->node, &string_tree); in ceph_find_or_create_string()
72 RB_CLEAR_NODE(&exist->node); in ceph_find_or_create_string()
93 if (!RB_EMPTY_NODE(&cs->node)) { in ceph_release_string()
94 rb_erase(&cs->node, &string_tree); in ceph_release_string()
95 RB_CLEAR_NODE(&cs->node); in ceph_release_string()