Searched refs:new_hash (Results 1 – 7 of 7) sorted by relevance
/Linux-v5.4/scripts/ |
D | parse-maintainers.pl | 155 my %new_hash; 162 $new_hash{$key} = $hash{$key}; 169 alpha_output(\%new_hash, $output_section);
|
/Linux-v5.4/kernel/trace/ |
D | ftrace.c | 1331 struct ftrace_hash *new_hash; in alloc_and_copy_ftrace_hash() local 1336 new_hash = alloc_ftrace_hash(size_bits); in alloc_and_copy_ftrace_hash() 1337 if (!new_hash) in alloc_and_copy_ftrace_hash() 1341 new_hash->flags = hash->flags; in alloc_and_copy_ftrace_hash() 1345 return new_hash; in alloc_and_copy_ftrace_hash() 1350 ret = add_hash_entry(new_hash, entry->ip); in alloc_and_copy_ftrace_hash() 1356 FTRACE_WARN_ON(new_hash->count != hash->count); in alloc_and_copy_ftrace_hash() 1358 return new_hash; in alloc_and_copy_ftrace_hash() 1361 free_ftrace_hash(new_hash); in alloc_and_copy_ftrace_hash() 1371 struct ftrace_hash *new_hash); [all …]
|
/Linux-v5.4/lib/ |
D | rhashtable.c | 224 unsigned int new_hash; in rhashtable_rehash_one() local 245 new_hash = head_hashfn(ht, new_tbl, entry); in rhashtable_rehash_one() 247 rht_lock_nested(new_tbl, &new_tbl->buckets[new_hash], SINGLE_DEPTH_NESTING); in rhashtable_rehash_one() 249 head = rht_ptr(new_tbl->buckets + new_hash, new_tbl, new_hash); in rhashtable_rehash_one() 253 rht_assign_unlock(new_tbl, &new_tbl->buckets[new_hash], entry); in rhashtable_rehash_one()
|
/Linux-v5.4/net/ipv4/ |
D | fib_semantics.c | 1248 unsigned int new_hash; in fib_info_hash_move() local 1250 new_hash = fib_info_hashfn(fi); in fib_info_hash_move() 1251 dest = &new_info_hash[new_hash]; in fib_info_hash_move() 1264 unsigned int new_hash; in fib_info_hash_move() local 1266 new_hash = fib_laddr_hashfn(fi->fib_prefsrc); in fib_info_hash_move() 1267 ldest = &new_laddrhash[new_hash]; in fib_info_hash_move()
|
D | udp.c | 1950 u16 new_hash = ipv4_portaddr_hash(sock_net(sk), in udp_v4_rehash() local 1953 udp_lib_rehash(sk, new_hash); in udp_v4_rehash()
|
/Linux-v5.4/include/net/ |
D | udp.h | 198 void udp_lib_rehash(struct sock *sk, u16 new_hash);
|
/Linux-v5.4/net/ipv6/ |
D | udp.c | 94 u16 new_hash = ipv6_portaddr_hash(sock_net(sk), in udp_v6_rehash() local 98 udp_lib_rehash(sk, new_hash); in udp_v6_rehash()
|