Home
last modified time | relevance | path

Searched refs:node2 (Results 1 – 19 of 19) sorted by relevance

/linux-4.4.14/arch/sparc/prom/
Dtree_32.c233 phandle node = prom_root_node, node2; in prom_finddevice() local
255 node2 = node; in prom_finddevice()
256 while (node2 && (s32)node2 != -1) { in prom_finddevice()
257 if (prom_getproperty (node2, "reg", (char *)reg, sizeof (reg)) > 0) { in prom_finddevice()
259 node = node2; in prom_finddevice()
263 node2 = prom_getsibling(node2); in prom_finddevice()
264 if (!node2 || (s32)node2 == -1) in prom_finddevice()
266 node2 = prom_searchsiblings(prom_getsibling(node2), nbuf); in prom_finddevice()
/linux-4.4.14/include/net/
Dnetrom.h160 #define nr_neigh_for_each_safe(__nr_neigh, node2, list) \ argument
161 hlist_for_each_entry_safe(__nr_neigh, node2, list, neigh_node)
166 #define nr_node_for_each_safe(__nr_node, node2, list) \ argument
167 hlist_for_each_entry_safe(__nr_node, node2, list, node_node)
/linux-4.4.14/drivers/of/
Dof_pci.c25 struct device_node *node, *node2; in of_pci_find_child_device() local
36 for_each_child_of_node(node, node2) { in of_pci_find_child_device()
37 if (__of_pci_pci_compare(node2, devfn)) { in of_pci_find_child_device()
39 return node2; in of_pci_find_child_device()
/linux-4.4.14/fs/hfs/
Dbnode.c240 struct hfs_bnode *node, *node2; in __hfs_bnode_create() local
265 node2 = hfs_bnode_findhash(tree, cnid); in __hfs_bnode_create()
266 if (!node2) { in __hfs_bnode_create()
274 wait_event(node2->lock_wq, !test_bit(HFS_BNODE_NEW, &node2->flags)); in __hfs_bnode_create()
275 return node2; in __hfs_bnode_create()
/linux-4.4.14/fs/xfs/libxfs/
Dxfs_da_btree.c742 struct xfs_da_intnode *node2; in xfs_da3_node_rebalance() local
759 node2 = blk2->bp->b_addr; in xfs_da3_node_rebalance()
761 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2); in xfs_da3_node_rebalance()
763 btree2 = dp->d_ops->node_tree_p(node2); in xfs_da3_node_rebalance()
774 node1 = node2; in xfs_da3_node_rebalance()
775 node2 = tmpnode; in xfs_da3_node_rebalance()
777 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2); in xfs_da3_node_rebalance()
779 btree2 = dp->d_ops->node_tree_p(node2); in xfs_da3_node_rebalance()
845 dp->d_ops->node_hdr_to_disk(node2, &nodehdr2); in xfs_da3_node_rebalance()
847 XFS_DA_LOGRANGE(node2, &node2->hdr, in xfs_da3_node_rebalance()
[all …]
/linux-4.4.14/fs/hfsplus/
Dbnode.c404 struct hfs_bnode *node, *node2; in __hfs_bnode_create() local
430 node2 = hfs_bnode_findhash(tree, cnid); in __hfs_bnode_create()
431 if (!node2) { in __hfs_bnode_create()
439 wait_event(node2->lock_wq, in __hfs_bnode_create()
440 !test_bit(HFS_BNODE_NEW, &node2->flags)); in __hfs_bnode_create()
441 return node2; in __hfs_bnode_create()
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/
Daicasm_symbol.c303 symbol_node_t *node1, *node2; in symlist_free() local
307 node2 = SLIST_NEXT(node1, links); in symlist_free()
309 node1 = node2; in symlist_free()
/linux-4.4.14/arch/s390/numa/
Dmode_emu.c495 static int emu_distance(int node1, int node2) in emu_distance() argument
497 return (node1 != node2) * EMU_NODE_DIST; in emu_distance()
/linux-4.4.14/drivers/mtd/ubi/
Dfastmap.c421 struct rb_node *node, *node2; in unmap_peb() local
427 for (node2 = rb_first(&av->root); node2; in unmap_peb()
428 node2 = rb_next(node2)) { in unmap_peb()
429 aeb = rb_entry(node2, struct ubi_ainf_peb, u.rb); in unmap_peb()
/linux-4.4.14/drivers/pci/hotplug/
Dcpqphp_ctrl.c830 struct pci_resource *node2; in cpqhp_resource_sort_and_combine() local
863 node2 = node1->next; in cpqhp_resource_sort_and_combine()
866 node2->next = node1->next; in cpqhp_resource_sort_and_combine()
867 node1->next = node2; in cpqhp_resource_sort_and_combine()
880 node2 = node1->next; in cpqhp_resource_sort_and_combine()
882 kfree(node2); in cpqhp_resource_sort_and_combine()
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
Di40e_ethtool.c2016 struct hlist_node *node2; in i40e_get_ethtool_fdir_all() local
2022 hlist_for_each_entry_safe(rule, node2, in i40e_get_ethtool_fdir_all()
2052 struct hlist_node *node2; in i40e_get_ethtool_fdir_entry() local
2054 hlist_for_each_entry_safe(rule, node2, in i40e_get_ethtool_fdir_entry()
2293 struct hlist_node *node2; in i40e_update_ethtool_fdir_entry() local
2299 hlist_for_each_entry_safe(rule, node2, in i40e_update_ethtool_fdir_entry()
Di40e_main.c5397 struct hlist_node *node2; in i40e_fdir_filter_exit() local
5399 hlist_for_each_entry_safe(filter, node2, in i40e_fdir_filter_exit()
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-devices-system-cpu67 /sys/devices/system/cpu/cpu42/node2 -> ../../node/node2
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/
Dixgbe_ethtool.c2337 struct hlist_node *node2; in ixgbe_get_ethtool_fdir_entry() local
2343 hlist_for_each_entry_safe(rule, node2, in ixgbe_get_ethtool_fdir_entry()
2404 struct hlist_node *node2; in ixgbe_get_ethtool_fdir_all() local
2411 hlist_for_each_entry_safe(rule, node2, in ixgbe_get_ethtool_fdir_all()
2502 struct hlist_node *node2; in ixgbe_update_ethtool_fdir_entry() local
2509 hlist_for_each_entry_safe(rule, node2, in ixgbe_update_ethtool_fdir_entry()
Dixgbe_main.c4532 struct hlist_node *node2; in ixgbe_fdir_filter_restore() local
4540 hlist_for_each_entry_safe(filter, node2, in ixgbe_fdir_filter_restore()
5159 struct hlist_node *node2; in ixgbe_fdir_filter_exit() local
5164 hlist_for_each_entry_safe(filter, node2, in ixgbe_fdir_filter_exit()
/linux-4.4.14/lib/842/
D842_compress.c115 struct sw842_hlist_node2 node2[1 << I2_BITS]; member
/linux-4.4.14/fs/ext4/
Dnamei.c2197 struct dx_node *node2; in ext4_dx_add_entry() local
2211 node2 = (struct dx_node *)(bh2->b_data); in ext4_dx_add_entry()
2212 entries2 = node2->entries; in ext4_dx_add_entry()
2213 memset(&node2->fake, 0, sizeof(struct fake_dirent)); in ext4_dx_add_entry()
2214 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize, in ext4_dx_add_entry()
/linux-4.4.14/tools/perf/
Dbuiltin-kmem.c179 node2 = perf_evsel__intval(evsel, sample, "node"); in perf_evsel__process_alloc_node_event() local
181 if (node1 != node2) in perf_evsel__process_alloc_node_event()
/linux-4.4.14/drivers/net/wireless/
Dzd1201.c1836 struct hlist_node *node2; in zd1201_disconnect() local
1843 hlist_for_each_entry_safe(frag, node2, &zd->fraglist, fnode) { in zd1201_disconnect()