diff options
author | Florian Westphal <fw@strlen.de> | 2017-08-12 00:57:05 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2017-08-24 18:52:32 +0200 |
commit | 036c69400a34cf8f6d39c88325dd510462809e7b (patch) | |
tree | 737a2a7ceffc2cbd61d8e1ba9d111c6b016aabf4 /include | |
parent | 09ec82f5af99d1e35614eb0844b920fc335a313d (diff) | |
download | linux-stable-036c69400a34cf8f6d39c88325dd510462809e7b.tar.gz linux-stable-036c69400a34cf8f6d39c88325dd510462809e7b.tar.bz2 linux-stable-036c69400a34cf8f6d39c88325dd510462809e7b.zip |
netfilter: conntrack: reduce size of l4protocol trackers
can use u16 for both, shrinks size by another 8 bytes.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/netfilter/nf_conntrack_l4proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/netfilter/nf_conntrack_l4proto.h b/include/net/netfilter/nf_conntrack_l4proto.h index 47c16bae5e00..15c58dd3f701 100644 --- a/include/net/netfilter/nf_conntrack_l4proto.h +++ b/include/net/netfilter/nf_conntrack_l4proto.h @@ -92,12 +92,12 @@ struct nf_conntrack_l4proto { #if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT) struct { - size_t obj_size; int (*nlattr_to_obj)(struct nlattr *tb[], struct net *net, void *data); int (*obj_to_nlattr)(struct sk_buff *skb, const void *data); - unsigned int nlattr_max; + u16 obj_size; + u16 nlattr_max; const struct nla_policy *nla_policy; } ctnl_timeout; #endif |