hash.h 173 B

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