| /linux/drivers/acpi/acpica/ |
| H A D | nsalloc.c | 136 struct acpi_namespace_node *next_node; in acpi_ns_remove_node() local 143 next_node = parent_node->child; in acpi_ns_remove_node() 147 while (next_node != node) { in acpi_ns_remove_node() 148 prev_node = next_node; in acpi_ns_remove_node() 149 next_node = next_node->peer; in acpi_ns_remove_node() 269 struct acpi_namespace_node *next_node; in acpi_ns_delete_children() local 280 next_node = parent_node->child; in acpi_ns_delete_children() 281 while (next_node) { in acpi_ns_delete_children() 285 if (next_node->child) { in acpi_ns_delete_children() 287 parent_node, next_node)); in acpi_ns_delete_children() [all …]
|
| H A D | nsnames.c | 200 struct acpi_namespace_node *next_node; in acpi_ns_build_normalized_path() local 225 next_node = node; in acpi_ns_build_normalized_path() 226 while (next_node && next_node != acpi_gbl_root_node) { in acpi_ns_build_normalized_path() 227 if (next_node != node) { in acpi_ns_build_normalized_path() 232 ACPI_MOVE_32_TO_32(name, &next_node->name); in acpi_ns_build_normalized_path() 244 next_node = next_node->parent; in acpi_ns_build_normalized_path()
|
| H A D | evregion.c | 828 struct acpi_namespace_node *next_node; in acpi_ev_execute_orphan_reg_method() local 857 next_node = acpi_ns_get_next_node(device_node, NULL); in acpi_ev_execute_orphan_reg_method() 858 while (next_node) { in acpi_ev_execute_orphan_reg_method() 859 if ((next_node->type == ACPI_TYPE_REGION) && in acpi_ev_execute_orphan_reg_method() 860 (next_node->object) && in acpi_ev_execute_orphan_reg_method() 861 (next_node->object->region.space_id == space_id)) { in acpi_ev_execute_orphan_reg_method() 865 next_node = acpi_ns_get_next_node(device_node, next_node); in acpi_ev_execute_orphan_reg_method()
|
| /linux/drivers/net/ethernet/apm/xgene/ |
| H A D | xgene_enet_cle.c | 97 SET_VAL(CLE_BR_NNODE, br->next_node) | in xgene_cle_dn_to_hw() 215 .next_node = PKT_PROT_NODE, 226 .next_node = LAST_NODE, 251 .next_node = RSS_IPV4_TCP_NODE, 263 .next_node = RSS_IPV4_UDP_NODE, 274 .next_node = RSS_IPV4_OTHERS_NODE, 299 .next_node = RSS_IPV4_TCP_NODE, 311 .next_node = RSS_IPV4_TCP_NODE, 323 .next_node = RSS_IPV4_TCP_NODE, 335 .next_node = RSS_IPV4_TCP_NODE, [all …]
|
| H A D | xgene_enet_cle.h | 204 u16 next_node; member
|
| /linux/scripts/genksyms/ |
| H A D | lex.l | 102 cur_node = next_node; \ 103 next_node = xmalloc(sizeof(*next_node)); \ 104 next_node->next = cur_node; \ 133 static struct string_list *next_node; 141 next_node = xmalloc(sizeof(*next_node)); 142 next_node->next = NULL; 446 yylval = &next_node->next;
|
| /linux/mm/ |
| H A D | hugetlb_internal.h | 52 static inline int hstate_next_node_to_alloc(int *next_node, in hstate_next_node_to_alloc() argument 59 nid = get_valid_node_allowed(*next_node, nodes_allowed); in hstate_next_node_to_alloc() 60 *next_node = next_node_allowed(nid, nodes_allowed); in hstate_next_node_to_alloc() 83 #define for_each_node_mask_to_alloc(next_node, nr_nodes, node, mask) \ argument 86 ((node = hstate_next_node_to_alloc(next_node, mask)) || 1); \
|
| H A D | hugetlb.c | 1980 int *next_node) in alloc_pool_huge_folio() argument 1985 for_each_node_mask_to_alloc(next_node, nr_nodes, node, nodes_allowed) { in alloc_pool_huge_folio() 3481 int next_node = first_online_node; in hugetlb_pages_alloc_boot_node() local 3495 &node_alloc_noretry, &next_node); in hugetlb_pages_alloc_boot_node()
|
| /linux/lib/ |
| H A D | assoc_array.c | 37 cursor = READ_ONCE(shortcut->next_node); /* Address dependency. */ in assoc_array_subtree_iterate() 282 cursor = READ_ONCE(shortcut->next_node); /* Address dependency. */ in assoc_array_walk() 368 cursor = shortcut->next_node; in assoc_array_destroy_subtree() 408 BUG_ON(shortcut->next_node != cursor); in assoc_array_destroy_subtree() 708 edit->set[0].ptr = &assoc_array_ptr_to_shortcut(ptr)->next_node; in assoc_array_insert_into_terminal_node() 752 new_s0->next_node = assoc_array_node_to_ptr(new_n0); in assoc_array_insert_into_terminal_node() 859 new_s0->next_node = assoc_array_node_to_ptr(new_n0); in assoc_array_insert_mid_shortcut() 878 side = assoc_array_ptr_to_node(shortcut->next_node); in assoc_array_insert_mid_shortcut() 909 new_s1->next_node = shortcut->next_node; in assoc_array_insert_mid_shortcut() 927 new_n0->slots[sc_slot] = shortcut->next_node; in assoc_array_insert_mid_shortcut() [all …]
|
| /linux/kernel/bpf/ |
| H A D | lpm_trie.c | 658 struct lpm_trie_node *node, *next_node = NULL, *parent, *search_root; in trie_get_next_key() 719 next_node = parent; in trie_get_next_key() 739 next_node = node; in trie_get_next_key() 742 node = rcu_dereference(next_node->child[1]); in trie_get_next_key() 746 next_key->prefixlen = next_node->prefixlen; in trie_get_next_key() 748 next_node->data, trie->data_size); in trie_get_next_key() 655 struct lpm_trie_node *node, *next_node = NULL, *parent, *search_root; trie_get_next_key() local
|
| /linux/include/linux/ |
| H A D | nodemask.h | 256 #define next_node(n, src) __next_node((n), &(src)) macro 375 (node) = next_node((node), (mask))) 434 return next_node(nid, node_states[N_ONLINE]); in next_online_node() 438 return next_node(nid, node_states[N_MEMORY]); in next_memory_node()
|
| H A D | assoc_array_priv.h | 67 struct assoc_array_ptr *next_node; member
|
| /linux/drivers/gpu/drm/amd/amdkfd/ |
| H A D | kfd_queue.c | 165 struct interval_tree_node *next_node; in kfd_queue_buffer_svm_put() local 169 next_node = interval_tree_iter_next(node, addr, last); in kfd_queue_buffer_svm_put() 177 node = next_node; in kfd_queue_buffer_svm_put()
|
| /linux/arch/powerpc/kexec/ |
| H A D | core_64.c | 515 goto next_node; in update_cpus_node() 523 next_node: in update_cpus_node()
|
| /linux/tools/testing/memblock/tests/ |
| H A D | alloc_exact_nid_api.c | 843 struct memblock_region *next_node = &memblock.memory.regions[nid_next]; in alloc_exact_nid_numa_reserved_full_merge_generic_check() local 854 r1.base = next_node->base; in alloc_exact_nid_numa_reserved_full_merge_generic_check() 915 struct memblock_region *next_node = &memblock.memory.regions[7]; in alloc_exact_nid_numa_split_all_reserved_generic_check() local 924 r2.base = next_node->base + SZ_128; in alloc_exact_nid_numa_split_all_reserved_generic_check()
|
| H A D | alloc_nid_api.c | 2394 struct memblock_region *next_node = &memblock.memory.regions[nid_next]; in alloc_nid_numa_reserved_full_merge_generic_check() local 2405 r1.base = next_node->base; in alloc_nid_numa_reserved_full_merge_generic_check() 2465 struct memblock_region *next_node = &memblock.memory.regions[7]; in alloc_nid_numa_split_all_reserved_generic_check() local 2474 r2.base = next_node->base + SZ_128; in alloc_nid_numa_split_all_reserved_generic_check()
|
| /linux/drivers/md/ |
| H A D | dm-writecache.c | 1947 struct rb_node *node, *next_node; in writecache_writeback() local 2039 next_node = rb_next(&f->rb_node); in writecache_writeback() 2040 if (unlikely(!next_node)) in writecache_writeback() 2042 g = container_of(next_node, struct wc_entry, rb_node); in writecache_writeback() 2074 next_node = rb_next(&f->rb_node); in writecache_writeback() 2075 if (likely(next_node)) in writecache_writeback() 2076 g = container_of(next_node, struct wc_entry, rb_node); in writecache_writeback()
|
| H A D | dm-integrity.c | 1361 struct journal_node *node, *next_node; in test_journal_node() local 1376 next_node = container_of(next, struct journal_node, node); in test_journal_node() 1377 return next_node->sector != sector; in test_journal_node() 1383 struct journal_node *next_node; in find_newer_committed_node() local 1392 next_node = container_of(next, struct journal_node, node); in find_newer_committed_node() 1394 if (next_node->sector != node->sector) in find_newer_committed_node() 1397 next_section = (unsigned int)(next_node - ic->journal_tree) / ic->journal_section_entries; in find_newer_committed_node()
|
| /linux/kernel/sched/ |
| H A D | deadline.c | 2660 struct rb_node *next_node; in pick_earliest_pushable_dl_task() local 2665 next_node = rb_first_cached(&rq->dl.pushable_dl_tasks_root); in pick_earliest_pushable_dl_task() 2666 while (next_node) { in pick_earliest_pushable_dl_task() 2667 p = __node_2_pdl(next_node); in pick_earliest_pushable_dl_task() 2672 next_node = rb_next(next_node); in pick_earliest_pushable_dl_task()
|
| /linux/drivers/net/ethernet/intel/ice/ |
| H A D | ice_parser.h | 226 u16 next_node; /* Parser Node ID for the next round */ member
|
| H A D | ice_parser_rt.c | 371 ice_gpr_add(rt, ICE_GPR_NN_IDX, rt->action->next_node); in ice_pg_exe() 842 rt->action->next_node); in ice_parser_rt_execute()
|
| H A D | ice_parser.c | 667 dev_info(dev, "\tnext_node = %d\n", action->next_node); in ice_pg_cam_action_dump() 720 action->next_node = FIELD_GET(ICE_PGCA_NN, data); in ice_pg_cam_action_init()
|
| /linux/security/keys/ |
| H A D | keyring.c | 745 ptr = READ_ONCE(shortcut->next_node); in search_nested_keyrings() 762 ptr = READ_ONCE(shortcut->next_node); in search_nested_keyrings()
|
| /linux/arch/sparc/kernel/ |
| H A D | head_32.S | 383 or %g0, %g0, %o0 ! next_node(0) = first_node
|
| /linux/fs/f2fs/ |
| H A D | gc.c | 643 next_node: in atssr_lookup_victim() 678 goto next_node; in atssr_lookup_victim()
|