Searched refs:old_node (Results 1 – 8 of 8) sorted by relevance
/linux-6.12.1/scripts/dtc/ |
D | livetree.c | 142 struct node *merge_nodes(struct node *old_node, struct node *new_node) in merge_nodes() argument 148 old_node->deleted = 0; in merge_nodes() 152 add_label(&old_node->labels, l->label); in merge_nodes() 163 delete_property_by_name(old_node, new_prop->name); in merge_nodes() 169 for_each_property_withdel(old_node, old_prop) { in merge_nodes() 187 add_property(old_node, new_prop); in merge_nodes() 200 delete_node_by_name(old_node, new_child->name); in merge_nodes() 206 for_each_child_withdel(old_node, old_child) { in merge_nodes() 216 add_child(old_node, new_child); in merge_nodes() 219 old_node->srcpos = srcpos_extend(old_node->srcpos, new_node->srcpos); in merge_nodes() [all …]
|
D | dtc.h | 276 struct node *merge_nodes(struct node *old_node, struct node *new_node); 277 struct node *add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
|
/linux-6.12.1/kernel/ |
D | padata.c | 533 int old_node = atomic_read(&last_used_nid); in padata_do_multithreaded() local 536 nid = next_node_in(old_node, node_states[N_CPU]); in padata_do_multithreaded() 537 } while (!atomic_try_cmpxchg(&last_used_nid, &old_node, nid)); in padata_do_multithreaded()
|
/linux-6.12.1/rust/kernel/ |
D | rbtree.rs | 1267 let old_node = in replace() localVariable 1270 RBTreeNode { node: old_node } in replace()
|
/linux-6.12.1/drivers/net/ethernet/broadcom/bnxt/ |
D | bnxt_tc.c | 1530 struct bnxt_tc_flow_node *new_node, *old_node; in bnxt_tc_add_flow() local 1560 old_node = rhashtable_lookup_fast(&tc_info->flow_table, in bnxt_tc_add_flow() 1563 if (old_node) in bnxt_tc_add_flow() 1564 __bnxt_tc_del_flow(bp, old_node); in bnxt_tc_add_flow()
|
/linux-6.12.1/drivers/net/ethernet/marvell/octeontx2/nic/ |
D | otx2_tc.c | 1249 struct otx2_tc_flow *new_node, *old_node; in otx2_tc_add_flow() local 1285 old_node = otx2_tc_get_entry_by_cookie(flow_cfg, tc_flow_cmd->cookie); in otx2_tc_add_flow() 1286 if (old_node) in otx2_tc_add_flow()
|
/linux-6.12.1/block/ |
D | blk-mq.c | 4273 int old_node; in blk_mq_realloc_hw_ctxs() local 4278 old_node = old_hctx->numa_node; in blk_mq_realloc_hw_ctxs() 4286 node, old_node); in blk_mq_realloc_hw_ctxs() 4287 hctx = blk_mq_alloc_and_init_hctx(set, q, i, old_node); in blk_mq_realloc_hw_ctxs()
|
/linux-6.12.1/drivers/net/ethernet/hisilicon/hns3/hns3pf/ |
D | hclge_main.c | 9306 struct hclge_mac_node *old_node, *new_node; in hclge_update_mac_node_for_dev_addr() local 9330 old_node = hclge_find_mac_node(list, old_addr); in hclge_update_mac_node_for_dev_addr() 9331 if (old_node) { in hclge_update_mac_node_for_dev_addr() 9332 if (old_node->state == HCLGE_MAC_TO_ADD) { in hclge_update_mac_node_for_dev_addr() 9333 list_del(&old_node->node); in hclge_update_mac_node_for_dev_addr() 9334 kfree(old_node); in hclge_update_mac_node_for_dev_addr() 9336 old_node->state = HCLGE_MAC_TO_DEL; in hclge_update_mac_node_for_dev_addr()
|