Skip to content
Snippets Groups Projects
Commit 2cc83fe5 authored by Hauke Mehrtens's avatar Hauke Mehrtens
Browse files

xtables-addons: #15516 Fix compile under linux 3.14


Add compatibility inline function.

Signed-off-by: default avatarJan Kardell <jan.kardell@telliq.com>

SVN-Revision: 40613
parent c7546827
No related branches found
No related tags found
No related merge requests found
--- a/extensions/compat_xtables.h
+++ b/extensions/compat_xtables.h
@@ -89,4 +89,11 @@ static inline void proc_net_remove(struc
}
#endif
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)
+static inline u32 net_random(void)
+{
+ return prandom_u32();
+}
+#endif
+
#endif /* _XTABLES_COMPAT_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment