diff options
Diffstat (limited to 'ANDROID_3.4.5/include/net/netns/hash.h')
-rw-r--r-- | ANDROID_3.4.5/include/net/netns/hash.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/ANDROID_3.4.5/include/net/netns/hash.h b/ANDROID_3.4.5/include/net/netns/hash.h deleted file mode 100644 index 548d78f2..00000000 --- a/ANDROID_3.4.5/include/net/netns/hash.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef __NET_NS_HASH_H__ -#define __NET_NS_HASH_H__ - -#include <asm/cache.h> - -struct net; - -static inline unsigned net_hash_mix(struct net *net) -{ -#ifdef CONFIG_NET_NS - /* - * shift this right to eliminate bits, that are - * always zeroed - */ - - return (unsigned)(((unsigned long)net) >> L1_CACHE_SHIFT); -#else - return 0; -#endif -} -#endif |