netfilter: nf_defrag_ipv4: fix compilation error with NF_CONNTRACK=n
authorPatrick McHardy <kaber@trash.net>
Thu, 18 Feb 2010 18:04:44 +0000 (19:04 +0100)
committerPatrick McHardy <kaber@trash.net>
Thu, 18 Feb 2010 18:04:44 +0000 (19:04 +0100)
commit37ee3d5b3e979a168536e7e2f15bd1e769cb4122
treeaa6abf4c6976e9f5f1904f42d0745578560f871d
parent2906f66a5682e5670a5eefe991843689b8d8563f
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>
include/net/netfilter/nf_conntrack_zones.h
net/ipv4/netfilter/nf_defrag_ipv4.c