[NETFILTER] nf_conntrack: clean up to reduce size of 'struct nf_conn'
authorHarald Welte <laforge@netfilter.org>
Tue, 21 Mar 2006 01:56:32 +0000 (17:56 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Mar 2006 01:56:32 +0000 (17:56 -0800)
commitdc808fe28db59fadf4ec32d53f62477fa28f3be8
tree2d7033e5808a63d7fb1bddc452d1ec0b2f3d381a
parent0d36f37bb1e1cbadca6dc90a840bb2bc9ab51c44
[NETFILTER] nf_conntrack: clean up to reduce size of 'struct nf_conn'

This patch moves all helper related data fields of 'struct nf_conn'
into a separate structure 'struct nf_conn_help'.  This new structure
is only present in conntrack entries for which we actually have a
helper loaded.

Also, this patch cleans up the nf_conntrack 'features' mechanism to
resemble what the original idea was: Just glue the feature-specific
data structures at the end of 'struct nf_conn', and explicitly
re-calculate the pointer to it when needed rather than keeping
pointers around.

Saves 20 bytes per conntrack on my x86_64 box. A non-helped conntrack
is 276 bytes. We still need to save another 20 bytes in order to fit
into to target of 256bytes.

Signed-off-by: Harald Welte <laforge@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/netfilter/nf_conntrack.h
net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c
net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c
net/netfilter/nf_conntrack_core.c
net/netfilter/nf_conntrack_ftp.c
net/netfilter/nf_conntrack_netlink.c
net/netfilter/nf_conntrack_standalone.c
net/netfilter/xt_helper.c