diff options
author | Patrick McHardy <kaber@trash.net> | 2010-02-18 13:04:44 -0500 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2010-02-18 13:04:44 -0500 |
commit | 37ee3d5b3e979a168536e7e2f15bd1e769cb4122 (patch) | |
tree | aa6abf4c6976e9f5f1904f42d0745578560f871d /include/net | |
parent | 2906f66a5682e5670a5eefe991843689b8d8563f (diff) |
netfilter: nf_defrag_ipv4: fix compilation error with NF_CONNTRACK=n
As reported by Randy Dunlap <randy.dunlap@oracle.com>, compilation
of nf_defrag_ipv4 fails with:
include/net/netfilter/nf_conntrack.h:94: error: field 'ct_general' has incomplete type
include/net/netfilter/nf_conntrack.h:178: error: 'const struct sk_buff' has no member named 'nfct'
include/net/netfilter/nf_conntrack.h:185: error: implicit declaration of function 'nf_conntrack_put'
include/net/netfilter/nf_conntrack.h:294: error: 'const struct sk_buff' has no member named 'nfct'
net/ipv4/netfilter/nf_defrag_ipv4.c:45: error: 'struct sk_buff' has no member named 'nfct'
net/ipv4/netfilter/nf_defrag_ipv4.c:46: error: 'struct sk_buff' has no member named 'nfct'
net/nf_conntrack.h must not be included with NF_CONNTRACK=n, add a
few #ifdefs. Long term the header file should be fixed to be usable
even with NF_CONNTRACK=n.
Tested-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_conntrack_zones.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/net/netfilter/nf_conntrack_zones.h b/include/net/netfilter/nf_conntrack_zones.h index 0bbb2bd51e89..034efe8d45a5 100644 --- a/include/net/netfilter/nf_conntrack_zones.h +++ b/include/net/netfilter/nf_conntrack_zones.h | |||
@@ -1,10 +1,11 @@ | |||
1 | #ifndef _NF_CONNTRACK_ZONES_H | 1 | #ifndef _NF_CONNTRACK_ZONES_H |
2 | #define _NF_CONNTRACK_ZONES_H | 2 | #define _NF_CONNTRACK_ZONES_H |
3 | 3 | ||
4 | #include <net/netfilter/nf_conntrack_extend.h> | ||
5 | |||
6 | #define NF_CT_DEFAULT_ZONE 0 | 4 | #define NF_CT_DEFAULT_ZONE 0 |
7 | 5 | ||
6 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) | ||
7 | #include <net/netfilter/nf_conntrack_extend.h> | ||
8 | |||
8 | struct nf_conntrack_zone { | 9 | struct nf_conntrack_zone { |
9 | u16 id; | 10 | u16 id; |
10 | }; | 11 | }; |
@@ -20,4 +21,5 @@ static inline u16 nf_ct_zone(const struct nf_conn *ct) | |||
20 | return NF_CT_DEFAULT_ZONE; | 21 | return NF_CT_DEFAULT_ZONE; |
21 | } | 22 | } |
22 | 23 | ||
24 | #endif /* CONFIG_NF_CONNTRACK || CONFIG_NF_CONNTRACK_MODULE */ | ||
23 | #endif /* _NF_CONNTRACK_ZONES_H */ | 25 | #endif /* _NF_CONNTRACK_ZONES_H */ |