Searched refs:node2 (Results 1 - 25 of 30) sorted by relevance

12

/linux-master/tools/testing/selftests/bpf/progs/
H A Dlinked_list.c28 bpf_obj_drop(container_of(n, struct foo, node2));
37 bpf_obj_drop(container_of(n, struct foo, node2));
45 bpf_list_push_front(head, &f->node2);
54 f = container_of(n, struct foo, node2);
62 bpf_list_push_front(head, &f->node2);
69 f = container_of(n, struct foo, node2);
80 bpf_obj_drop(container_of(n, struct foo, node2));
88 bpf_obj_drop(container_of(n, struct foo, node2));
122 bpf_list_push_front(head, &f[i]->node2);
123 bpf_list_push_front(head, &f[i + 1]->node2);
[all...]
H A Dlinked_list_fail.c83 CHECK(global, push_front, &ghead, &f->node2);
84 CHECK(global, push_back, &ghead, &f->node2);
86 CHECK(map, push_front, &v->head, &f->node2);
87 CHECK(map, push_back, &v->head, &f->node2);
89 CHECK(inner_map, push_front, &iv->head, &f->node2);
90 CHECK(inner_map, push_back, &iv->head, &f->node2);
144 CHECK(kptr_global, op, &f1->lock, &ghead, &f->node2); \
145 CHECK(kptr_map, op, &f1->lock, &v->head, &f->node2); \
146 CHECK(kptr_inner_map, op, &f1->lock, &iv->head, &f->node2); \
148 CHECK(global_global, op, &glock2, &ghead, &f->node2); \
[all...]
H A Dlinked_list.h19 struct bpf_list_node node2; member in struct:foo
25 struct bpf_list_head head __contains(foo, node2);
53 private(A) struct bpf_list_head ghead __contains(foo, node2);
/linux-master/arch/sparc/prom/
H A Dtree_32.c234 phandle node = prom_root_node, node2; local
256 node2 = node;
257 while (node2 && (s32)node2 != -1) {
258 if (prom_getproperty (node2, "reg", (char *)reg, sizeof (reg)) > 0) {
260 node = node2;
264 node2 = prom_getsibling(node2);
265 if (!node2 || (s32)node2
[all...]
/linux-master/include/net/
H A Dnetrom.h164 #define nr_neigh_for_each_safe(__nr_neigh, node2, list) \
165 hlist_for_each_entry_safe(__nr_neigh, node2, list, neigh_node)
170 #define nr_node_for_each_safe(__nr_node, node2, list) \
171 hlist_for_each_entry_safe(__nr_node, node2, list, node_node)
/linux-master/tools/testing/selftests/net/
H A Dioam6_parser.c50 static struct ioam_config node2 = { variable in typeref:struct:ioam_config
411 __u32 tmp32 = node2.egr_wide;
412 __u16 tmp16 = node2.egr_id;
415 node2.egr_id = 0xffff;
416 node2.egr_wide = 0xffffffff;
418 res = check_ioam6_data(&p, ioam6h, node2);
420 node2.egr_id = tmp16;
421 node2.egr_wide = tmp32;
429 if (check_ioam6_data(&p, ioam6h, node2))
/linux-master/fs/hfs/
H A Dbnode.c246 struct hfs_bnode *node, *node2; local
270 node2 = hfs_bnode_findhash(tree, cnid);
271 if (!node2) {
277 hfs_bnode_get(node2);
280 wait_event(node2->lock_wq, !test_bit(HFS_BNODE_NEW, &node2->flags));
281 return node2;
/linux-master/drivers/base/test/
H A Dproperty-entry-test.c409 static const struct software_node node2 = { .name = "2" }; local
410 static const struct software_node *group[] = { &node1, &node2, NULL };
414 SOFTWARE_NODE_REFERENCE(&node2, 3, 4),
419 PROPERTY_ENTRY_REF("ref-2", &node2, 1, 2),
448 KUNIT_EXPECT_PTR_EQ(test, to_software_node(ref.fwnode), &node2);
456 KUNIT_EXPECT_PTR_EQ(test, to_software_node(ref.fwnode), &node2);
478 KUNIT_EXPECT_PTR_EQ(test, to_software_node(ref.fwnode), &node2);
/linux-master/tools/testing/selftests/drivers/net/netdevsim/
H A Ddevlink.sh684 local node2="$DL_HANDLE/$node2_name"
685 rate_node_add "$node2"
686 check_err $? "Failed to add node $node2"
688 rate_attr_parent_check $node2 $node1_name \
690 rate_node_del "$node2"
691 check_err $? "Failed to delete node $node2"
/linux-master/tools/testing/selftests/alsa/
H A Dpcm-test.c122 snd_config_t *pcm_config, *node1, *node2; local
137 node2 = snd_config_iterator_entry(i2);
138 subdevice = device_from_id(node2);
141 if (conf_get_subtree(node2, "PLAYBACK", NULL))
143 if (conf_get_subtree(node2, "CAPTURE", NULL))
/linux-master/include/linux/
H A Drculist.h543 * [@right ][node2 ... ]
544 * The lists end up as [@left ][node2 ... ]
550 struct hlist_node *node2 = right->first; local
552 rcu_assign_pointer(left->first, node2);
554 WRITE_ONCE(node2->pprev, &left->first);
/linux-master/drivers/pci/
H A Dof.c135 struct device_node *node, *node2; local
146 for_each_child_of_node(node, node2) {
147 if (__of_pci_pci_compare(node2, devfn)) {
149 return node2;
/linux-master/scripts/gcc-plugins/
H A Dgcc-common.h291 static inline void cgraph_call_node_duplication_hooks(cgraph_node_ptr node, cgraph_node_ptr node2) argument
293 symtab->call_cgraph_duplication_hooks(node, node2);
/linux-master/fs/hfsplus/
H A Dbnode.c395 struct hfs_bnode *node, *node2; local
420 node2 = hfs_bnode_findhash(tree, cnid);
421 if (!node2) {
429 wait_event(node2->lock_wq,
430 !test_bit(HFS_BNODE_NEW, &node2->flags));
431 return node2;
/linux-master/fs/xfs/libxfs/
H A Dxfs_da_btree.c889 struct xfs_da_intnode *node2; local
905 node2 = blk2->bp->b_addr;
907 xfs_da3_node_hdr_from_disk(dp->i_mount, &nodehdr2, node2);
919 swap(node1, node2);
921 xfs_da3_node_hdr_from_disk(dp->i_mount, &nodehdr2, node2);
936 * Move elements in node2 up to make a hole.
948 * low in node2.
958 * Move the req'd B-tree elements from low in node2 to
972 * Move elements in node2 down to fill the hole.
990 xfs_da3_node_hdr_to_disk(dp->i_mount, node2,
1787 struct xfs_da_intnode *node2; local
[all...]
/linux-master/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_symbol.c300 symbol_node_t *node1, *node2; local
304 node2 = SLIST_NEXT(node1, links);
306 node1 = node2;
/linux-master/tools/testing/memblock/tests/
H A Dalloc_exact_nid_api.c187 * | | requested | | node1 | node2 | |
202 struct memblock_region *node2 = &memblock.memory.regions[6]; local
212 min_addr = node2->base - SZ_256;
458 * | | requested | | node1 | node2 | |
473 struct memblock_region *node2 = &memblock.memory.regions[6]; local
483 min_addr = node2->base - SZ_256;
787 * | node0 | node1 | node2 | node3 | node4 | node5 | node6 | node7 |
H A Dalloc_nid_api.c1624 * | | requested | | node1 | node2 | |
1639 struct memblock_region *node2 = &memblock.memory.regions[6]; local
1649 min_addr = node2->base - SZ_256;
2172 * | | requested | | node1 | node2 | |
2187 struct memblock_region *node2 = &memblock.memory.regions[6]; local
2197 min_addr = node2->base - SZ_256;
2339 * | node0 | node1 | node2 | node3 | node4 | node5 | node6 | node7 |
/linux-master/arch/powerpc/mm/
H A Dnuma.c204 int node1, node2; local
207 node2 = associativity_to_nid(cpu2_assoc);
209 dist = numa_distance_table[node1][node2];
/linux-master/drivers/pci/hotplug/
H A Dcpqphp_ctrl.c816 struct pci_resource *node2; local
849 node2 = node1->next;
852 node2->next = node1->next;
853 node1->next = node2;
866 node2 = node1->next;
868 kfree(node2);
/linux-master/tools/perf/
H A Dbuiltin-kmem.c202 int node1, node2; local
205 node2 = evsel__intval(evsel, sample, "node");
211 if ((node2 != NUMA_NO_NODE) && (node1 != node2))
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_ethtool.c3335 struct hlist_node *node2; local
3341 hlist_for_each_entry_safe(rule, node2,
3372 struct hlist_node *node2; local
3376 hlist_for_each_entry_safe(rule, node2,
3758 struct hlist_node *node2; local
3764 hlist_for_each_entry_safe(rule, node2,
4767 struct hlist_node *node2; local
4770 hlist_for_each_entry_safe(rule, node2,
5037 struct hlist_node *node2; local
5066 hlist_for_each_entry_safe(rule, node2,
[all...]
/linux-master/lib/842/
H A D842_compress.c106 struct sw842_hlist_node2 node2[1 << I2_BITS]; member in struct:sw842_param
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_ethtool.c2540 struct hlist_node *node2; local
2546 hlist_for_each_entry_safe(rule, node2,
2607 struct hlist_node *node2; local
2614 hlist_for_each_entry_safe(rule, node2,
2714 struct hlist_node *node2; local
2721 hlist_for_each_entry_safe(rule, node2,
/linux-master/fs/ext4/
H A Dnamei.c2529 struct dx_node *node2; local
2561 node2 = (struct dx_node *)(bh2->b_data);
2562 entries2 = node2->entries;
2563 memset(&node2->fake, 0, sizeof(struct fake_dirent));
2564 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,

Completed in 254 milliseconds

12