diff options
Diffstat (limited to 'package/network/utils/xtables-addons/patches/003-fix-kernel-3.9.patch')
-rw-r--r-- | package/network/utils/xtables-addons/patches/003-fix-kernel-3.9.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/network/utils/xtables-addons/patches/003-fix-kernel-3.9.patch b/package/network/utils/xtables-addons/patches/003-fix-kernel-3.9.patch new file mode 100644 index 0000000..e77e14d --- /dev/null +++ b/package/network/utils/xtables-addons/patches/003-fix-kernel-3.9.patch @@ -0,0 +1,14 @@ +--- a/extensions/compat_xtables.h ++++ b/extensions/compat_xtables.h +@@ -57,4 +57,11 @@ + + #define xt_request_find_match xtnu_request_find_match + ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0) ++static inline void proc_net_remove(struct net *net, const char *name) ++{ ++ remove_proc_entry(name, net->proc_net); ++} ++#endif ++ + #endif /* _XTABLES_COMPAT_H */ |