From: Pablo Neira Ayuso <pablo@netfilter.org>
To: netfilter-devel@vger.kernel.org
Cc: davem@davemloft.net, netdev@vger.kernel.org, kuba@kernel.org,
pabeni@redhat.com, edumazet@google.com
Subject: [PATCH net-next 0/6] Netfilter updates for net-next
Date: Mon, 14 Nov 2022 11:41:00 +0100 [thread overview]
Message-ID: <20221114104106.8719-1-pablo@netfilter.org> (raw)
Hi,
The following patchset contains Netfilter updates for net-next:
1) Fix sparse warning in the new nft_inner expression, reported
by Jakub Kicinski.
2) Incorrect vlan header check in nft_inner, from Peng Wu.
3) Two patches to pass reset boolean to expression dump operation,
in preparation for allowing to reset stateful expressions in rules.
This adds a new NFT_MSG_GETRULE_RESET command. From Phil Sutter.
4) Inconsistent indentation in nft_fib, from Jiapeng Chong.
5) Speed up siphash calculation in conntrack, from Florian Westphal.
This batch includes two fixes for the new inner payload/meta match
coming in the previous nf-next pull request.
Please, pull these changes from:
git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
Thanks.
----------------------------------------------------------------
The following changes since commit 6f1a298b2e24c703bfcc643e41bc7c0604fe4830:
Merge branch 'inet-add-drop-monitor-support' (2022-10-31 20:14:30 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git HEAD
for you to fetch changes up to 21a92d58de4e399c13c43aadc2c70ca6b98c4c39:
netfilter: conntrack: use siphash_4u64 (2022-11-09 15:50:31 +0100)
----------------------------------------------------------------
Florian Westphal (1):
netfilter: conntrack: use siphash_4u64
Jiapeng Chong (1):
netfilter: rpfilter/fib: clean up some inconsistent indenting
Pablo Neira Ayuso (1):
netfilter: nft_payload: use __be16 to store gre version
Peng Wu (1):
netfilter: nft_inner: fix return value check in nft_inner_parse_l2l3()
Phil Sutter (2):
netfilter: nf_tables: Extend nft_expr_ops::dump callback parameters
netfilter: nf_tables: Introduce NFT_MSG_GETRULE_RESET
include/net/netfilter/nf_tables.h | 5 ++--
include/net/netfilter/nft_fib.h | 2 +-
include/net/netfilter/nft_meta.h | 4 +--
include/net/netfilter/nft_reject.h | 3 +-
include/uapi/linux/netfilter/nf_tables.h | 2 ++
net/ipv4/netfilter/nft_dup_ipv4.c | 3 +-
net/ipv4/netfilter/nft_fib_ipv4.c | 5 ++--
net/ipv6/netfilter/nft_dup_ipv6.c | 3 +-
net/netfilter/nf_conntrack_core.c | 28 +++++++-----------
net/netfilter/nf_tables_api.c | 49 +++++++++++++++++++++-----------
net/netfilter/nft_bitwise.c | 6 ++--
net/netfilter/nft_byteorder.c | 3 +-
net/netfilter/nft_cmp.c | 9 ++++--
net/netfilter/nft_compat.c | 9 ++++--
net/netfilter/nft_connlimit.c | 3 +-
net/netfilter/nft_counter.c | 5 ++--
net/netfilter/nft_ct.c | 6 ++--
net/netfilter/nft_dup_netdev.c | 3 +-
net/netfilter/nft_dynset.c | 7 +++--
net/netfilter/nft_exthdr.c | 9 ++++--
net/netfilter/nft_fib.c | 2 +-
net/netfilter/nft_flow_offload.c | 3 +-
net/netfilter/nft_fwd_netdev.c | 6 ++--
net/netfilter/nft_hash.c | 4 +--
net/netfilter/nft_immediate.c | 3 +-
net/netfilter/nft_inner.c | 7 +++--
net/netfilter/nft_last.c | 3 +-
net/netfilter/nft_limit.c | 5 ++--
net/netfilter/nft_log.c | 3 +-
net/netfilter/nft_lookup.c | 3 +-
net/netfilter/nft_masq.c | 3 +-
net/netfilter/nft_meta.c | 5 ++--
net/netfilter/nft_nat.c | 3 +-
net/netfilter/nft_numgen.c | 6 ++--
net/netfilter/nft_objref.c | 6 ++--
net/netfilter/nft_osf.c | 3 +-
net/netfilter/nft_payload.c | 9 ++++--
net/netfilter/nft_queue.c | 6 ++--
net/netfilter/nft_quota.c | 5 ++--
net/netfilter/nft_range.c | 3 +-
net/netfilter/nft_redir.c | 3 +-
net/netfilter/nft_reject.c | 3 +-
net/netfilter/nft_rt.c | 2 +-
net/netfilter/nft_socket.c | 2 +-
net/netfilter/nft_synproxy.c | 3 +-
net/netfilter/nft_tproxy.c | 2 +-
net/netfilter/nft_tunnel.c | 2 +-
net/netfilter/nft_xfrm.c | 2 +-
48 files changed, 166 insertions(+), 105 deletions(-)
next reply other threads:[~2022-11-14 10:41 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-14 10:41 Pablo Neira Ayuso [this message]
2022-11-14 10:41 ` [PATCH net-next 1/6] netfilter: nft_payload: use __be16 to store gre version Pablo Neira Ayuso
2022-11-14 10:41 ` [PATCH net-next 2/6] netfilter: nft_inner: fix return value check in nft_inner_parse_l2l3() Pablo Neira Ayuso
2022-11-14 10:41 ` [PATCH net-next 3/6] netfilter: nf_tables: Extend nft_expr_ops::dump callback parameters Pablo Neira Ayuso
2022-11-15 3:04 ` Jakub Kicinski
2022-11-15 9:40 ` Pablo Neira Ayuso
2022-11-14 10:41 ` [PATCH net-next 4/6] netfilter: nf_tables: Introduce NFT_MSG_GETRULE_RESET Pablo Neira Ayuso
2022-11-14 10:41 ` [PATCH net-next 5/6] netfilter: rpfilter/fib: clean up some inconsistent indenting Pablo Neira Ayuso
2022-11-14 10:41 ` [PATCH net-next 6/6] netfilter: conntrack: use siphash_4u64 Pablo Neira Ayuso
2022-11-15 3:02 ` Jakub Kicinski
-- strict thread matches above, loose matches on Subject: below --
2025-08-20 14:47 [PATCH net-next 0/6] netfilter: updates for net-next Florian Westphal
2021-06-23 17:02 [PATCH net-next 0/6] Netfilter " Pablo Neira Ayuso
2021-06-23 17:02 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=20221114104106.8719-1-pablo@netfilter.org \
--to=pablo@netfilter.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=pabeni@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).