#ifndef __NET_NS_HASH_H__ #define __NET_NS_HASH_H__ #include struct net; static inline u32 net_hash_mix(const struct net *net) { #ifdef CONFIG_NET_NS /* * shift this right to eliminate bits, that are * always zeroed */ return (u32)(((unsigned long)net) >> L1_CACHE_SHIFT); #else return 0; #endif } #endif l'/>
summaryrefslogtreecommitdiff
7c92d61eca453d5007669e4322dd8e469d443d04&id2=7286ff7fde9f963736c7e575572899d8e16b06b7'>llc_output.c
diff options
AgeCommit message (Expand)AuthorFilesLines
context:
space:
mode:
Diffstat (limited to 'net/llc/llc_output.c')