Home
last modified time | relevance | path

Searched refs:BUCKET_SPACE (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/net/core/
Dnet-procfs.c9 #define BUCKET_SPACE (32 - NETDEV_HASHBITS - 1) macro
11 #define get_bucket(x) ((x) >> BUCKET_SPACE)
12 #define get_offset(x) ((x) & ((1 << BUCKET_SPACE) - 1))
13 #define set_bucket_offset(b, o) ((b) << BUCKET_SPACE | (o))
/linux-6.1.9/net/unix/
Daf_unix.c3255 #define BUCKET_SPACE (BITS_PER_LONG - (UNIX_HASH_BITS + 1) - 1) macro
3257 #define get_bucket(x) ((x) >> BUCKET_SPACE)
3258 #define get_offset(x) ((x) & ((1UL << BUCKET_SPACE) - 1))
3259 #define set_bucket_offset(b, o) ((b) << BUCKET_SPACE | (o))