Commit e9d3897c authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Patrick McHardy

netfilter: netns: #ifdef ->iptable_security, ->ip6table_security

'security' tables depend on SECURITY, so ifdef them.
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 83fc8102
...@@ -37,7 +37,9 @@ struct netns_ipv4 { ...@@ -37,7 +37,9 @@ struct netns_ipv4 {
struct xt_table *iptable_mangle; struct xt_table *iptable_mangle;
struct xt_table *iptable_raw; struct xt_table *iptable_raw;
struct xt_table *arptable_filter; struct xt_table *arptable_filter;
#ifdef CONFIG_SECURITY
struct xt_table *iptable_security; struct xt_table *iptable_security;
#endif
struct xt_table *nat_table; struct xt_table *nat_table;
struct hlist_head *nat_bysource; struct hlist_head *nat_bysource;
int nat_vmalloced; int nat_vmalloced;
......
...@@ -36,7 +36,9 @@ struct netns_ipv6 { ...@@ -36,7 +36,9 @@ struct netns_ipv6 {
struct xt_table *ip6table_filter; struct xt_table *ip6table_filter;
struct xt_table *ip6table_mangle; struct xt_table *ip6table_mangle;
struct xt_table *ip6table_raw; struct xt_table *ip6table_raw;
#ifdef CONFIG_SECURITY
struct xt_table *ip6table_security; struct xt_table *ip6table_security;
#endif
#endif #endif
struct rt6_info *ip6_null_entry; struct rt6_info *ip6_null_entry;
struct rt6_statistics *rt6_stats; struct rt6_statistics *rt6_stats;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment