From: Hauke Mehrtens <hauke@hauke-m.de>
Date: Wed, 30 Apr 2014 22:15:40 +0000 (+0000)
Subject: xtables-addons: #15516 Fix compile under linux 3.14
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=2cc83fe501461006982ab8c1c6b1023eb11c2503;p=openwrt%2Fstaging%2Fstintel.git

xtables-addons: #15516 Fix compile under linux 3.14

Add compatibility inline function.

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

SVN-Revision: 40613
---

diff --git a/package/network/utils/xtables-addons/patches/004-fix-kernel-3.14.patch b/package/network/utils/xtables-addons/patches/004-fix-kernel-3.14.patch
new file mode 100644
index 0000000000..c866aef112
--- /dev/null
+++ b/package/network/utils/xtables-addons/patches/004-fix-kernel-3.14.patch
@@ -0,0 +1,14 @@
+--- 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 */