/Linux-v6.6/tools/testing/selftests/bpf/progs/ |
D | recursion.c | 22 } hash2 SEC(".maps"); 36 if (map == (void *)&hash2) { in BPF_PROG() 38 bpf_map_delete_elem(&hash2, &key); in BPF_PROG()
|
/Linux-v6.6/tools/testing/selftests/bpf/prog_tests/ |
D | recursion.c | 29 bpf_map_delete_elem(bpf_map__fd(skel->maps.hash2), &key); in test_recursion() 31 bpf_map_delete_elem(bpf_map__fd(skel->maps.hash2), &key); in test_recursion()
|
/Linux-v6.6/net/netfilter/ipvs/ |
D | ip_vs_mh.c | 65 hsiphash_key_t hash1, hash2; member 71 hsiphash_key_t *hash2) in generate_hash_secret() argument 76 hash2->key[0] = 2654446892UL; in generate_hash_secret() 77 hash2->key[1] = 2654446892UL; in generate_hash_secret() 147 dest->port, &s->hash2, 0) % in ip_vs_mh_permutate() 398 generate_hash_secret(&s->hash1, &s->hash2); in ip_vs_mh_init_svc()
|
/Linux-v6.6/net/ipv6/ |
D | inet6_hashtables.c | 212 unsigned int hash2; in inet6_lookup_listener() local 224 hash2 = ipv6_portaddr_hash(net, daddr, hnum); in inet6_lookup_listener() 225 ilb2 = inet_lhash2_bucket(hashinfo, hash2); in inet6_lookup_listener() 234 hash2 = ipv6_portaddr_hash(net, &in6addr_any, hnum); in inet6_lookup_listener() 235 ilb2 = inet_lhash2_bucket(hashinfo, hash2); in inet6_lookup_listener()
|
D | udp.c | 218 unsigned int hash2, slot2; in __udp6_lib_lookup() local 222 hash2 = ipv6_portaddr_hash(net, daddr, hnum); in __udp6_lib_lookup() 223 slot2 = hash2 & udptable->mask; in __udp6_lib_lookup() 224 hslot2 = &udptable->hash2[slot2]; in __udp6_lib_lookup() 250 hash2 = ipv6_portaddr_hash(net, &in6addr_any, hnum); in __udp6_lib_lookup() 251 slot2 = hash2 & udptable->mask; in __udp6_lib_lookup() 252 hslot2 = &udptable->hash2[slot2]; in __udp6_lib_lookup() 838 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); in __udp6_lib_mcast_deliver() local 847 hash2 = ipv6_portaddr_hash(net, daddr, hnum) & udptable->mask; in __udp6_lib_mcast_deliver() 849 hslot = &udptable->hash2[hash2]; in __udp6_lib_mcast_deliver() [all …]
|
/Linux-v6.6/net/ipv4/ |
D | udp.c | 477 unsigned int hash2, slot2; in __udp4_lib_lookup() local 481 hash2 = ipv4_portaddr_hash(net, daddr, hnum); in __udp4_lib_lookup() 482 slot2 = hash2 & udptable->mask; in __udp4_lib_lookup() 483 hslot2 = &udptable->hash2[slot2]; in __udp4_lib_lookup() 509 hash2 = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum); in __udp4_lib_lookup() 510 slot2 = hash2 & udptable->mask; in __udp4_lib_lookup() 511 hslot2 = &udptable->hash2[slot2]; in __udp4_lib_lookup() 2230 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); in __udp4_lib_mcast_deliver() local 2240 hash2 = ipv4_portaddr_hash(net, daddr, hnum) & udptable->mask; in __udp4_lib_mcast_deliver() 2242 hslot = &udptable->hash2[hash2]; in __udp4_lib_mcast_deliver() [all …]
|
D | inet_hashtables.c | 441 unsigned int hash2; in __inet_lookup_listener() local 453 hash2 = ipv4_portaddr_hash(net, daddr, hnum); in __inet_lookup_listener() 454 ilb2 = inet_lhash2_bucket(hashinfo, hash2); in __inet_lookup_listener() 463 hash2 = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum); in __inet_lookup_listener() 464 ilb2 = inet_lhash2_bucket(hashinfo, hash2); in __inet_lookup_listener()
|
/Linux-v6.6/lib/ |
D | hashtable_test.c | 23 DECLARE_HASHTABLE(hash2, 3); in hashtable_test_hash_init() 28 hash_init(hash2); in hashtable_test_hash_init() 31 KUNIT_EXPECT_TRUE(test, hash_empty(hash2)); in hashtable_test_hash_init()
|
/Linux-v6.6/scripts/ |
D | get_dvb_firmware | 560 my $hash2 = "26b687136e127b8ac24b81e0eeafc20b"; 571 verify($file2, $hash2); 704 my $hash2 = "d5e1437dc24358578e07999475d4cac9"; 714 verify("$fwfile2", $hash2);
|
/Linux-v6.6/include/net/ |
D | udp.h | 75 struct udp_hslot *hash2; member 93 return &table->hash2[hash & table->mask]; in udp_hashslot2()
|
/Linux-v6.6/net/unix/ |
D | af_unix.c | 161 unsigned int hash1, unsigned int hash2) in unix_table_double_lock() argument 163 if (hash1 == hash2) { in unix_table_double_lock() 168 if (hash1 > hash2) in unix_table_double_lock() 169 swap(hash1, hash2); in unix_table_double_lock() 172 spin_lock_nested(&net->unx.table.locks[hash2], SINGLE_DEPTH_NESTING); in unix_table_double_lock() 176 unsigned int hash1, unsigned int hash2) in unix_table_double_unlock() argument 178 if (hash1 == hash2) { in unix_table_double_unlock() 184 spin_unlock(&net->unx.table.locks[hash2]); in unix_table_double_unlock()
|
/Linux-v6.6/fs/ext4/ |
D | namei.c | 1983 u32 hash2; in do_split() local 2046 hash2 = map[split].hash; in do_split() 2047 continued = hash2 == map[split - 1].hash; in do_split() 2050 hash2, split, count-split)); in do_split() 2073 if (hinfo->hash >= hash2) { in do_split() 2077 dx_insert_block(frame, hash2 + continued, newblock); in do_split() 2577 unsigned hash2 = dx_get_hash(entries + icount1); in ext4_dx_add_entry() local 2600 dx_insert_block((frame - 1), hash2, newblock); in ext4_dx_add_entry()
|
/Linux-v6.6/drivers/net/ethernet/ti/ |
D | tlan.c | 1262 u32 hash2 = 0; in tlan_set_multicast_list() local 1294 hash2 |= (1 << (offset - 32)); in tlan_set_multicast_list() 1301 tlan_dio_write32(dev->base_addr, TLAN_HASH_2, hash2); in tlan_set_multicast_list()
|
/Linux-v6.6/drivers/net/ethernet/agere/ |
D | et131x.c | 950 u32 hash2 = 0; in et1310_setup_device_for_multicast() local 974 hash2 |= (1 << result); in et1310_setup_device_for_multicast() 988 writel(hash2, &rxmac->multi_hash2); in et1310_setup_device_for_multicast()
|
/Linux-v6.6/Documentation/filesystems/ |
D | ubifs-authentication.rst | 341 ,. CS , hash1.----. hash2.----.
|