Searched refs:xa_head (Results 1 – 8 of 8) sorted by relevance
/Linux-v6.6/lib/ |
D | radix-tree.c | 391 struct radix_tree_node *node = rcu_dereference_raw(root->xa_head); in radix_tree_load_root() 420 entry = rcu_dereference_raw(root->xa_head); in radix_tree_extend() 457 rcu_assign_pointer(root->xa_head, entry); in radix_tree_extend() 473 struct radix_tree_node *node = rcu_dereference_raw(root->xa_head); in radix_tree_shrink() 508 root->xa_head = (void __rcu *)child; in radix_tree_shrink() 553 rcu_dereference_raw(root->xa_head)) in delete_node() 569 root->xa_head = NULL; in delete_node() 603 void __rcu **slot = (void __rcu **)&root->xa_head; in __radix_tree_create() 617 child = rcu_dereference_raw(root->xa_head); in __radix_tree_create() 757 slot = (void __rcu **)&root->xa_head; in __radix_tree_lookup() [all …]
|
D | idr.c | 242 if (slot != &idr->idr_rt.xa_head && !xa_is_retry(entry)) in idr_get_next_ul() 595 pr_debug("ida: %p node %p free %d\n", ida, xa->xa_head, in ida_dump() 597 ida_dump_entry(xa->xa_head, 0); in ida_dump()
|
D | xarray.c | 190 entry = xa_head(xas->xa); in xas_start() 457 RCU_INIT_POINTER(xa->xa_head, entry); in xas_shrink() 498 xas->xa->xa_head = NULL; in xas_delete_node() 616 rcu_assign_pointer(xa->xa_head, head); in xas_expand() 659 slot = &xa->xa_head; in xas_create() 671 slot = &xa->xa_head; in xas_create() 778 void __rcu **slot = &xas->xa->xa_head; in xas_store() 1322 entry = xa_head(xas->xa); in xas_find_marked() 2220 RCU_INIT_POINTER(xa->xa_head, NULL); in xa_destroy() 2299 void *entry = xa->xa_head; in xa_dump()
|
D | test_xarray.c | 359 node = xa_head(xa); in check_xa_shrink() 364 XA_BUG_ON(xa, xa_head(xa) == node); in check_xa_shrink() 368 XA_BUG_ON(xa, xa->xa_head != node); in check_xa_shrink() 609 XA_BUG_ON(xa, xa_to_node(xa_head(xa))->count != 2); in check_multi_store() 610 XA_BUG_ON(xa, xa_to_node(xa_head(xa))->nr_values != 2); in check_multi_store() 619 XA_BUG_ON(xa, xa_to_node(xa_head(xa))->count != 3); in check_multi_store() 620 XA_BUG_ON(xa, xa_to_node(xa_head(xa))->nr_values != 2); in check_multi_store() 631 XA_BUG_ON(xa, xa_to_node(xa_head(xa))->count != 4); in check_multi_store() 632 XA_BUG_ON(xa, xa_to_node(xa_head(xa))->nr_values != 4); in check_multi_store()
|
/Linux-v6.6/include/linux/ |
D | xarray.h | 300 void __rcu * xa_head; member 306 .xa_head = NULL, \ 382 xa->xa_head = NULL; in xa_init_flags() 407 return xa->xa_head == NULL; in xa_empty() 1198 static inline void *xa_head(const struct xarray *xa) in xa_head() function 1200 return rcu_dereference_check(xa->xa_head, in xa_head() 1207 return rcu_dereference_protected(xa->xa_head, in xa_head_locked() 1592 return xa_head(xas->xa); in xas_reload()
|
D | radix-tree.h | 88 return root->xa_head == NULL; in radix_tree_empty()
|
D | pagemap.h | 178 head = rcu_access_pointer(mapping->i_pages.xa_head); in mapping_shrinkable()
|
/Linux-v6.6/tools/testing/radix-tree/ |
D | test.c | 249 struct radix_tree_node *node = root->xa_head; in verify_tag_consistency() 273 struct radix_tree_node *node = root->xa_head; in tree_verify_min_height()
|