datapath: introduce rtnl ops stub
[cascardo/ovs.git] / datapath / linux / compat / include / asm / hash.h
1 #ifndef _ASM_HASH_WRAPPER_H
2 #define _ASM_HASH_WRAPPER_H
3
4 #include <linux/version.h>
5 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0)
6 #include_next <asm/hash.h>
7 #else
8
9 struct fast_hash_ops;
10 #ifdef CONFIG_X86
11 extern void setup_arch_fast_hash(struct fast_hash_ops *ops);
12 #else
13 static inline void setup_arch_fast_hash(struct fast_hash_ops *ops) { }
14 #endif
15
16 #endif /* < 3.14 */
17
18 #endif /* _ASM_HASH_WRAPPER_H */