Symbol: hash_long
arch/x86/mm/kmmio.c
89
return &kmmio_page_table[hash_long(addr, KMMIO_PAGE_HASH_BITS)];
drivers/md/bcache/request.c
754
s->iop.write_point = hash_long((unsigned long) current, 16);
drivers/md/dm-clone-target.c
605
return &clone->ht[hash_long(region_nr, HASH_TABLE_BITS)];
drivers/md/raid1.h
191
return hash_long(sector >> BARRIER_UNIT_SECTOR_BITS,
drivers/net/ethernet/mellanox/mlx4/en_netdev.c
286
bucket_idx = hash_long(l, MLX4_EN_FILTER_HASH_SHIFT);
drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c
492
bucket_idx = hash_long(l, ARFS_HASH_SHIFT);
fs/dax.c
163
hash = hash_long((unsigned long)xas->xa ^ index, DAX_WAIT_TABLE_BITS);
fs/ecryptfs/messaging.c
23
hash_long((unsigned long)from_kuid(&init_user_ns, current_euid()), ecryptfs_hash_bits)
fs/fuse/dev.c
323
return hash_long(unique & ~FUSE_INT_REQ_BIT, FUSE_PQ_HASH_BITS);
fs/nfsd/nfs4idmap.c
117
hash = hash_long(hash ^ ent->id, ENT_HASHBITS);
fs/notify/fanotify/fanotify.c
872
hash ^= hash_long((unsigned long)pid | ondir, FANOTIFY_EVENT_HASH_BITS);
include/linux/hash.h
87
return hash_long((unsigned long)ptr, bits);
include/linux/hashtable.h
32
(sizeof(val) <= 4 ? hash_32(val, bits) : hash_long(val, bits))
include/linux/stringhash.h
55
return hash_long(hash, 32);
io_uring/poll.c
124
u32 index = hash_long(req->cqe.user_data, table->hash_bits);
io_uring/poll.c
758
u32 index = hash_long(cd->data, ctx->cancel_table.hash_bits);
kernel/locking/lockdep.c
1215
unsigned long hash = hash_long((uintptr_t)key, KEYHASH_BITS);
kernel/locking/lockdep.c
410
#define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS)
kernel/locking/lockdep.c
421
#define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS)
kernel/sched/wait_bit.c
20
return bit_wait_table + hash_long(val, WAIT_TABLE_BITS);
kernel/trace/ftrace.c
1159
return hash_long(ip, hash->size_bits);
kernel/trace/ftrace.c
742
key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
kernel/trace/ftrace.c
761
key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
kernel/ucount.c
25
hash_long((unsigned long)__kuid_val(uid) + (unsigned long)(ns), \
lib/debugobjects.c
607
hash = hash_long((addr >> ODEBUG_CHUNK_SHIFT), ODEBUG_HASH_BITS);
lib/vsprintf.c
832
hashval = hash_long((unsigned long)ptr, 32);
net/sunrpc/svcauth_unix.c
417
return hash_long(from_kuid(&init_user_ns, uid), GID_HASHBITS);
security/tomoyo/memory.c
163
head = &tomoyo_name_list[hash_long(hash, TOMOYO_HASH_BITS)];
tools/include/linux/hash.h
87
return hash_long((unsigned long)ptr, bits);
tools/include/linux/hashtable.h
29
(sizeof(val) <= 4 ? hash_32(val, bits) : hash_long(val, bits))
tools/perf/builtin-lock.c
937
hash ^= hash_long((unsigned long)node->ip, 64);
tools/perf/util/lock-contention.c
14
#define __lockhashfn(key) hash_long((unsigned long)key, LOCKHASH_BITS)