/linux-4.4.14/fs/hfsplus/ |
D | brec.c | 65 struct hfs_bnode *node, *new_node; in hfs_brec_insert() local 80 new_node = NULL; in hfs_brec_insert() 96 if (new_node) in hfs_brec_insert() 98 new_node = hfs_bnode_split(fd); in hfs_brec_insert() 99 if (IS_ERR(new_node)) in hfs_brec_insert() 100 return PTR_ERR(new_node); in hfs_brec_insert() 138 if (!rec && new_node != node) { in hfs_brec_insert() 143 if (new_node) { in hfs_brec_insert() 145 if (!new_node->parent) { in hfs_brec_insert() 147 new_node->parent = tree->root; in hfs_brec_insert() [all …]
|
/linux-4.4.14/fs/hfs/ |
D | brec.c | 67 struct hfs_bnode *node, *new_node; in hfs_brec_insert() local 82 new_node = NULL; in hfs_brec_insert() 98 if (new_node) in hfs_brec_insert() 100 new_node = hfs_bnode_split(fd); in hfs_brec_insert() 101 if (IS_ERR(new_node)) in hfs_brec_insert() 102 return PTR_ERR(new_node); in hfs_brec_insert() 138 if (!rec && new_node != node) { in hfs_brec_insert() 143 if (new_node) { in hfs_brec_insert() 145 if (!new_node->parent) { in hfs_brec_insert() 147 new_node->parent = tree->root; in hfs_brec_insert() [all …]
|
/linux-4.4.14/tools/perf/util/ |
D | rblist.c | 17 struct rb_node *parent = NULL, *new_node; in rblist__add_node() local 33 new_node = rblist->node_new(rblist, new_entry); in rblist__add_node() 34 if (new_node == NULL) in rblist__add_node() 37 rb_link_node(new_node, parent, p); in rblist__add_node() 38 rb_insert_color(new_node, &rblist->entries); in rblist__add_node() 56 struct rb_node *parent = NULL, *new_node = NULL; in __rblist__findnew() local 73 new_node = rblist->node_new(rblist, entry); in __rblist__findnew() 74 if (new_node) { in __rblist__findnew() 75 rb_link_node(new_node, parent, p); in __rblist__findnew() 76 rb_insert_color(new_node, &rblist->entries); in __rblist__findnew() [all …]
|
/linux-4.4.14/drivers/net/wireless/mwifiex/ |
D | 11n_rxreorder.c | 328 struct mwifiex_rx_reorder_tbl *tbl, *new_node; in mwifiex_11n_create_rx_reorder_tbl() local 343 new_node = kzalloc(sizeof(struct mwifiex_rx_reorder_tbl), GFP_KERNEL); in mwifiex_11n_create_rx_reorder_tbl() 344 if (!new_node) in mwifiex_11n_create_rx_reorder_tbl() 347 INIT_LIST_HEAD(&new_node->list); in mwifiex_11n_create_rx_reorder_tbl() 348 new_node->tid = tid; in mwifiex_11n_create_rx_reorder_tbl() 349 memcpy(new_node->ta, ta, ETH_ALEN); in mwifiex_11n_create_rx_reorder_tbl() 350 new_node->start_win = seq_num; in mwifiex_11n_create_rx_reorder_tbl() 351 new_node->init_win = seq_num; in mwifiex_11n_create_rx_reorder_tbl() 352 new_node->flags = 0; in mwifiex_11n_create_rx_reorder_tbl() 372 last_seq, new_node->start_win); in mwifiex_11n_create_rx_reorder_tbl() [all …]
|
D | 11n.c | 532 struct mwifiex_tx_ba_stream_tbl *new_node; in mwifiex_create_ba_tbl() local 538 new_node = kzalloc(sizeof(struct mwifiex_tx_ba_stream_tbl), in mwifiex_create_ba_tbl() 540 if (!new_node) in mwifiex_create_ba_tbl() 549 INIT_LIST_HEAD(&new_node->list); in mwifiex_create_ba_tbl() 551 new_node->tid = tid; in mwifiex_create_ba_tbl() 552 new_node->ba_status = ba_status; in mwifiex_create_ba_tbl() 553 memcpy(new_node->ra, ra, ETH_ALEN); in mwifiex_create_ba_tbl() 556 list_add_tail(&new_node->list, &priv->tx_ba_stream_tbl_ptr); in mwifiex_create_ba_tbl()
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | nssearch.c | 295 struct acpi_namespace_node *new_node; in acpi_ns_search_and_enter() local 409 new_node = acpi_ns_create_node(target_name); in acpi_ns_search_and_enter() 410 if (!new_node) { in acpi_ns_search_and_enter() 419 new_node->flags |= ANOBJ_IS_EXTERNAL; in acpi_ns_search_and_enter() 424 new_node->flags |= ANOBJ_TEMPORARY; in acpi_ns_search_and_enter() 429 acpi_ns_install_node(walk_state, node, new_node, type); in acpi_ns_search_and_enter() 430 *return_node = new_node; in acpi_ns_search_and_enter()
|
D | nsaccess.c | 70 struct acpi_namespace_node *new_node; in acpi_ns_root_initialize() local 112 ACPI_NS_NO_UPSEARCH, NULL, &new_node); in acpi_ns_root_initialize() 163 new_node->value = obj_desc->method.param_count; in acpi_ns_root_initialize() 190 obj_desc->mutex.node = new_node; in acpi_ns_root_initialize() 234 status = acpi_ns_attach_object(new_node, obj_desc, in acpi_ns_root_initialize()
|
D | dswload2.c | 379 struct acpi_namespace_node *new_node; in acpi_ds_load2_end_op() local 705 &(new_node)); in acpi_ds_load2_end_op() 712 if (new_node->type != ACPI_TYPE_METHOD) { in acpi_ds_load2_end_op() 720 op->common.node = new_node; in acpi_ds_load2_end_op()
|
/linux-4.4.14/fs/ext4/ |
D | block_validity.c | 62 struct rb_node *parent = NULL, *new_node = NULL; in add_system_zone() local 76 new_node = *n; in add_system_zone() 77 new_entry = rb_entry(new_node, struct ext4_system_zone, in add_system_zone() 90 new_node = &new_entry->node; in add_system_zone() 92 rb_link_node(new_node, parent, n); in add_system_zone() 93 rb_insert_color(new_node, &sbi->system_blks); in add_system_zone() 97 node = rb_prev(new_node); in add_system_zone() 109 node = rb_next(new_node); in add_system_zone()
|
D | mballoc.c | 4584 struct rb_node *parent = NULL, *new_node; in ext4_mb_free_metadata() local 4590 new_node = &new_entry->efd_node; in ext4_mb_free_metadata() 4618 rb_link_node(new_node, parent, n); in ext4_mb_free_metadata() 4619 rb_insert_color(new_node, &db->bb_free_root); in ext4_mb_free_metadata() 4622 node = rb_prev(new_node); in ext4_mb_free_metadata() 4634 node = rb_next(new_node); in ext4_mb_free_metadata()
|
/linux-4.4.14/drivers/media/pci/cx23885/ |
D | altera-ci.c | 229 struct fpga_inode *new_node = fpga_first_inode; in append_internal() local 231 if (new_node == NULL) { in append_internal() 232 new_node = kmalloc(sizeof(struct fpga_inode), GFP_KERNEL); in append_internal() 233 fpga_first_inode = new_node; in append_internal() 235 while (new_node->next_inode != NULL) in append_internal() 236 new_node = new_node->next_inode; in append_internal() 238 new_node->next_inode = in append_internal() 240 if (new_node->next_inode != NULL) in append_internal() 241 new_node = new_node->next_inode; in append_internal() 243 new_node = NULL; in append_internal() [all …]
|
/linux-4.4.14/net/mac80211/ |
D | mesh_pathtbl.c | 533 struct mpath_node *node, *new_node; in mesh_path_add() local 569 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); in mesh_path_add() 570 if (!new_node) in mesh_path_add() 579 new_node->mpath = new_mpath; in mesh_path_add() 586 hlist_add_head_rcu(&new_node->list, bucket); in mesh_path_add() 667 struct mpath_node *node, *new_node; in mpp_path_add() local 685 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); in mpp_path_add() 686 if (!new_node) in mpp_path_add() 695 new_node->mpath = new_mpath; in mpp_path_add() 715 hlist_add_head_rcu(&new_node->list, bucket); in mpp_path_add() [all …]
|
/linux-4.4.14/scripts/dtc/ |
D | livetree.c | 137 struct node *merge_nodes(struct node *old_node, struct node *new_node) in merge_nodes() argument 146 for_each_label_withdel(new_node->labels, l) in merge_nodes() 151 while (new_node->proplist) { in merge_nodes() 153 new_prop = new_node->proplist; in merge_nodes() 154 new_node->proplist = new_prop->next; in merge_nodes() 185 while (new_node->children) { in merge_nodes() 187 new_child = new_node->children; in merge_nodes() 188 new_node->children = new_child->next_sibling; in merge_nodes() 214 free(new_node); in merge_nodes()
|
D | dtc.h | 196 struct node *merge_nodes(struct node *old_node, struct node *new_node);
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | stv0900_core.c | 99 struct stv0900_inode *new_node = stv0900_first_inode; in append_internal() local 101 if (new_node == NULL) { in append_internal() 102 new_node = kmalloc(sizeof(struct stv0900_inode), GFP_KERNEL); in append_internal() 103 stv0900_first_inode = new_node; in append_internal() 105 while (new_node->next_inode != NULL) in append_internal() 106 new_node = new_node->next_inode; in append_internal() 108 new_node->next_inode = kmalloc(sizeof(struct stv0900_inode), in append_internal() 110 if (new_node->next_inode != NULL) in append_internal() 111 new_node = new_node->next_inode; in append_internal() 113 new_node = NULL; in append_internal() [all …]
|
/linux-4.4.14/fs/dlm/ |
D | lowcomms.c | 367 struct dlm_node_addr *new_node, *na; in dlm_lowcomms_addr() local 369 new_node = kzalloc(sizeof(struct dlm_node_addr), GFP_NOFS); in dlm_lowcomms_addr() 370 if (!new_node) in dlm_lowcomms_addr() 375 kfree(new_node); in dlm_lowcomms_addr() 384 new_node->nodeid = nodeid; in dlm_lowcomms_addr() 385 new_node->addr[0] = new_addr; in dlm_lowcomms_addr() 386 new_node->addr_count = 1; in dlm_lowcomms_addr() 387 list_add(&new_node->list, &dlm_node_addrs); in dlm_lowcomms_addr() 395 kfree(new_node); in dlm_lowcomms_addr() 401 kfree(new_node); in dlm_lowcomms_addr()
|
/linux-4.4.14/kernel/gcov/ |
D | fs.c | 431 static struct gcov_node *new_node(struct gcov_node *parent, in new_node() function 598 node = new_node(parent, NULL, curr); in add_node() 605 node = new_node(parent, info, curr); in add_node()
|
/linux-4.4.14/fs/btrfs/ |
D | relocation.c | 1194 struct backref_node *new_node; local 1224 new_node = alloc_backref_node(cache); 1225 if (!new_node) 1228 new_node->bytenr = dest->node->start; 1229 new_node->level = node->level; 1230 new_node->lowest = node->lowest; 1231 new_node->checked = 1; 1232 new_node->root = dest; 1240 new_edge->node[UPPER] = new_node; 1243 &new_node->lower); [all …]
|
/linux-4.4.14/mm/ |
D | memory_hotplug.c | 1240 bool new_node; in add_memory_resource() local 1265 new_node = !node_online(nid); in add_memory_resource() 1266 if (new_node) { in add_memory_resource() 1282 if (new_node) { in add_memory_resource()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_bo.c | 1034 struct nvkm_mem *new_node = mem->mm_node; in nouveau_bo_move_prep() local 1043 ret = nvkm_vm_get(drm->client.vm, size, new_node->page_shift, in nouveau_bo_move_prep() 1051 nvkm_vm_map(&old_node->vma[1], new_node); in nouveau_bo_move_prep()
|