Lines Matching refs:node
302 struct xa_node *node; in check_xa_shrink() local
316 node = xas.xa_node; in check_xa_shrink()
317 XA_BUG_ON(xa, xa_entry_locked(xa, node, 0) != xa_mk_value(0)); in check_xa_shrink()
321 XA_BUG_ON(xa, xa_entry_locked(xa, node, 0) != XA_RETRY_ENTRY); in check_xa_shrink()
334 node = xa_head(xa); in check_xa_shrink()
339 XA_BUG_ON(xa, xa_head(xa) == node); in check_xa_shrink()
343 XA_BUG_ON(xa, xa->xa_head != node); in check_xa_shrink()
1484 static void test_update_node(struct xa_node *node) in test_update_node() argument
1486 if (node->count && node->count == node->nr_values) { in test_update_node()
1487 if (list_empty(&node->private_list)) in test_update_node()
1488 list_add(&shadow_nodes, &node->private_list); in test_update_node()
1490 if (!list_empty(&node->private_list)) in test_update_node()
1491 list_del_init(&node->private_list); in test_update_node()
1497 struct xa_node *node; in shadow_remove() local
1500 while ((node = list_first_entry_or_null(&shadow_nodes, in shadow_remove()
1502 XA_STATE(xas, node->array, 0); in shadow_remove()
1503 XA_BUG_ON(xa, node->array != xa); in shadow_remove()
1504 list_del_init(&node->private_list); in shadow_remove()
1505 xas.xa_node = xa_parent_locked(node->array, node); in shadow_remove()
1506 xas.xa_offset = node->offset; in shadow_remove()
1507 xas.xa_shift = node->shift + XA_CHUNK_SHIFT; in shadow_remove()