Home
last modified time | relevance | path

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

/linux-4.1.27/net/core/
Dnet-procfs.c6 #define BUCKET_SPACE (32 - NETDEV_HASHBITS - 1) macro
8 #define get_bucket(x) ((x) >> BUCKET_SPACE)
9 #define get_offset(x) ((x) & ((1 << BUCKET_SPACE) - 1))
10 #define set_bucket_offset(b, o) ((b) << BUCKET_SPACE | (o))
/linux-4.1.27/net/unix/
Daf_unix.c2428 #define BUCKET_SPACE (BITS_PER_LONG - (UNIX_HASH_BITS + 1) - 1) macro
2430 #define get_bucket(x) ((x) >> BUCKET_SPACE)
2431 #define get_offset(x) ((x) & ((1L << BUCKET_SPACE) - 1))
2432 #define set_bucket_offset(b, o) ((b) << BUCKET_SPACE | (o))