From: patchwork-bot+netdevbpf@kernel.org
To: Pablo Neira Ayuso <pablo@netfilter.org>
Cc: netfilter-devel@vger.kernel.org, davem@davemloft.net,
netdev@vger.kernel.org, kuba@kernel.org, pabeni@redhat.com,
edumazet@google.com
Subject: Re: [PATCH net 01/14] ipvs: align inner_mac_header for encapsulation
Date: Thu, 22 Jun 2023 14:30:23 +0000 [thread overview]
Message-ID: <168744422377.515.17617756038976173501.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20230621100731.68068-2-pablo@netfilter.org>
Hello:
This series was applied to netdev/net.git (main)
by Pablo Neira Ayuso <pablo@netfilter.org>:
On Wed, 21 Jun 2023 12:07:18 +0200 you wrote:
> From: Terin Stock <terin@cloudflare.com>
>
> When using encapsulation the original packet's headers are copied to the
> inner headers. This preserves the space for an inner mac header, which
> is not used by the inner payloads for the encapsulation types supported
> by IPVS. If a packet is using GUE or GRE encapsulation and needs to be
> segmented, flow can be passed to __skb_udp_tunnel_segment() which
> calculates a negative tunnel header length. A negative tunnel header
> length causes pskb_may_pull() to fail, dropping the packet.
>
> [...]
Here is the summary with links:
- [net,01/14] ipvs: align inner_mac_header for encapsulation
https://git.kernel.org/netdev/net/c/d7fce52fdf96
- [net,02/14] netfilter: nf_tables: fix chain binding transaction logic
https://git.kernel.org/netdev/net/c/4bedf9eee016
- [net,03/14] netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound set/chain
https://git.kernel.org/netdev/net/c/26b5a5712eb8
- [net,04/14] netfilter: nf_tables: drop map element references from preparation phase
https://git.kernel.org/netdev/net/c/628bd3e49cba
- [net,05/14] netfilter: nft_set_pipapo: .walk does not deal with generations
https://git.kernel.org/netdev/net/c/2b84e215f874
- [net,06/14] netfilter: nf_tables: fix underflow in object reference counter
https://git.kernel.org/netdev/net/c/d6b478666ffa
- [net,07/14] netfilter: nf_tables: disallow element updates of bound anonymous sets
https://git.kernel.org/netdev/net/c/c88c535b592d
- [net,08/14] netfilter: nf_tables: reject unbound anonymous set before commit phase
https://git.kernel.org/netdev/net/c/938154b93be8
- [net,09/14] netfilter: nf_tables: reject unbound chain set before commit phase
https://git.kernel.org/netdev/net/c/62e1e94b246e
- [net,10/14] netfilter: nf_tables: disallow updates of anonymous sets
https://git.kernel.org/netdev/net/c/b770283c98e0
- [net,11/14] netfilter: nf_tables: disallow timeout for anonymous sets
https://git.kernel.org/netdev/net/c/e26d3009efda
- [net,12/14] netfilter: nf_tables: drop module reference after updating chain
https://git.kernel.org/netdev/net/c/043d2acf5722
- [net,13/14] netfilter: nfnetlink_osf: fix module autoload
https://git.kernel.org/netdev/net/c/62f9a68a36d4
- [net,14/14] netfilter: nf_tables: Fix for deleting base chains with payload
https://git.kernel.org/netdev/net/c/42e344f01688
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2023-06-22 14:30 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-21 10:07 [PATCH net,v3 00/14] Netfilter/IPVS fixes for net Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 01/14] ipvs: align inner_mac_header for encapsulation Pablo Neira Ayuso
2023-06-22 14:30 ` patchwork-bot+netdevbpf [this message]
2023-06-21 10:07 ` [PATCH net 02/14] netfilter: nf_tables: fix chain binding transaction logic Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 03/14] netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound set/chain Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 04/14] netfilter: nf_tables: drop map element references from preparation phase Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 05/14] netfilter: nft_set_pipapo: .walk does not deal with generations Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 06/14] netfilter: nf_tables: fix underflow in object reference counter Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 07/14] netfilter: nf_tables: disallow element updates of bound anonymous sets Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 08/14] netfilter: nf_tables: reject unbound anonymous set before commit phase Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 09/14] netfilter: nf_tables: reject unbound chain " Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 10/14] netfilter: nf_tables: disallow updates of anonymous sets Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 11/14] netfilter: nf_tables: disallow timeout for " Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 12/14] netfilter: nf_tables: drop module reference after updating chain Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 13/14] netfilter: nfnetlink_osf: fix module autoload Pablo Neira Ayuso
2023-06-21 10:07 ` [PATCH net 14/14] netfilter: nf_tables: Fix for deleting base chains with payload Pablo Neira Ayuso
-- strict thread matches above, loose matches on Subject: below --
2023-06-20 9:35 [PATCH net 00/14,v2] Netfilter/IPVS fixes for net Pablo Neira Ayuso
2023-06-20 9:35 ` [PATCH net 01/14] ipvs: align inner_mac_header for encapsulation Pablo Neira Ayuso
2023-06-19 14:57 [PATCH net 00/14] Netfilter/IPVS fixes for net Pablo Neira Ayuso
2023-06-19 14:57 ` [PATCH net 01/14] ipvs: align inner_mac_header for encapsulation 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=168744422377.515.17617756038976173501.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.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 \
--cc=pablo@netfilter.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.