hash.h 176 B

1234567891011
  1. #ifndef __NET_NS_HASH_H__
  2. #define __NET_NS_HASH_H__
  3. #include <net/net_namespace.h>
  4. static inline unsigned int net_hash_mix(struct net *net)
  5. {
  6. return net->hash_mix;
  7. }
  8. #endif