From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Florian Westphal <fw@strlen.de>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nf-next 2/2] netfilter: reduce hook array sizes to what is needed
Date: Wed, 6 Dec 2017 19:14:27 +0100 [thread overview]
Message-ID: <20171206181427.GA1765@salvia> (raw)
In-Reply-To: <20171202235848.22737-3-fw@strlen.de>
On Sun, Dec 03, 2017 at 12:58:48AM +0100, Florian Westphal wrote:
> Not all families share the same hook count.
>
> Can't use the corresponding ARP, BRIDGE, DECNET defines because they are
> defined in uapi headers and including them causes build failures.
>
> struct net before:
> /* size: 6592, cachelines: 103, members: 46 */
> after:
> /* size: 5952, cachelines: 93, members: 46 */
>
> Also, no need to define hook points if the family isn't supported.
>
> Signed-off-by: Florian Westphal <fw@strlen.de>
> ---
> include/linux/netfilter.h | 6 ++++++
> include/net/netns/netfilter.h | 19 ++++++++++++++-----
> net/netfilter/core.c | 22 ++++++++++++++++++++++
> 3 files changed, 42 insertions(+), 5 deletions(-)
>
> diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h
> index 80aa9a0b3d10..30a0d12a1f6d 100644
> --- a/include/linux/netfilter.h
> +++ b/include/linux/netfilter.h
> @@ -202,15 +202,21 @@ static inline int nf_hook(u_int8_t pf, unsigned int hook, struct net *net,
> case NFPROTO_IPV6:
> hook_head = rcu_dereference(net->nf.hooks_ipv6[hook]);
> break;
> +#if IS_ENABLED(CONFIG_IP_NF_ARPTABLES)
There'a also nftables here that can use the NFPROTO_ARP family.
> case NFPROTO_ARP:
> hook_head = rcu_dereference(net->nf.hooks_arp[hook]);
> break;
> +#endif
> +#if IS_ENABLED(CONFIG_NF_TABLES_BRIDGE)
Same here with ebtables?
> case NFPROTO_BRIDGE:
> hook_head = rcu_dereference(net->nf.hooks_bridge[hook]);
> break;
> +#endif
next prev parent reply other threads:[~2017-12-06 18:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-02 23:58 [PATCH nf-next 0/2] netfilter: reduce size of hook entry points Florian Westphal
2017-12-02 23:58 ` [PATCH nf-next 1/2] netfilter: reduce size of hook entry point locations Florian Westphal
2017-12-02 23:58 ` [PATCH nf-next 2/2] netfilter: reduce hook array sizes to what is needed Florian Westphal
2017-12-06 18:14 ` Pablo Neira Ayuso [this message]
2017-12-06 8:20 ` [PATCH nf-next 0/2] netfilter: reduce size of hook entry points Pablo Neira Ayuso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171206181427.GA1765@salvia \
--to=pablo@netfilter.org \
--cc=fw@strlen.de \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.