Netdev List
 help / color / mirror / Atom feed
From: Paolo Abeni <pabeni@redhat.com>
To: Alice Mikityanska <alice.kernel@fastmail.im>,
	Daniel Borkmann <daniel@iogearbox.net>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Xin Long <lucien.xin@gmail.com>,
	Willem de Bruijn <willemdebruijn.kernel@gmail.com>,
	Willem de Bruijn <willemb@google.com>,
	David Ahern <dsahern@kernel.org>,
	Nikolay Aleksandrov <razor@blackwall.org>
Cc: Shuah Khan <shuah@kernel.org>,
	Stanislav Fomichev <stfomichev@gmail.com>,
	Andrew Lunn <andrew+netdev@lunn.ch>,
	Simon Horman <horms@kernel.org>, Florian Westphal <fw@strlen.de>,
	netdev@vger.kernel.org, Alice Mikityanska <alice@isovalent.com>
Subject: Re: [PATCH net-next v9 9/9] selftests: net: Add a test for BIG TCP in UDP tunnels
Date: Wed, 22 Jul 2026 13:20:24 +0200	[thread overview]
Message-ID: <d66c1cb5-6201-4390-a7e7-0a8461bc069b@redhat.com> (raw)
In-Reply-To: <20260710134242.216538-10-alice.kernel@fastmail.im>

On 7/10/26 3:42 PM, Alice Mikityanska wrote:
> +WORKDIR=$(mktemp -d)
> +trap cleanup EXIT
> +setup
> +for tunnel in vxlan geneve; do
> +	for tun_family in 4 6; do
> +		for traffic_family in 4 6; do
> +			for csum_offload in on off; do
> +				setup_tunnel "$tunnel" "$tun_family" "$csum_offload" || exit "$?"
> +				do_test "$tun_family" "$traffic_family" "$csum_offload" || exit "$?"
> +				cleanup_tunnel
> +			done
> +		done
> +	done
> +done

Not a blocker, but a possible follow-up: in the past a few GRO/GSO bugs
were detected only when performing GSO, GRO and again segmentation on
the same data before actual reception, see the "GSO after GRO" test-case
in udpgro_fwd.sh.

/P


  reply	other threads:[~2026-07-22 11:20 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20260715061259epcas5p378f743489493da324fc9092ed2dfe147@epcas5p3.samsung.com>
2026-07-10 13:42 ` [PATCH net-next v9 0/9] BIG TCP for UDP tunnels Alice Mikityanska
2026-07-10 13:42   ` [PATCH net-next v9 1/9] net: Use helpers to get/set UDP len tree-wide Alice Mikityanska
2026-07-16 14:46     ` Simon Horman
2026-07-16 15:18       ` Alice Mikityanska
2026-07-17 12:40         ` Simon Horman
2026-07-10 13:42   ` [PATCH net-next v9 2/9] net: Enable BIG TCP with partial GSO Alice Mikityanska
2026-07-16 14:47     ` Simon Horman
2026-07-16 16:28       ` Alice Mikityanska
2026-07-22 11:14         ` Paolo Abeni
2026-07-10 13:42   ` [PATCH net-next v9 3/9] udp: Support BIG TCP GSO packets where they can occur Alice Mikityanska
2026-07-10 13:42   ` [PATCH net-next v9 4/9] udp: Support gro_ipv4_max_size > 65536 Alice Mikityanska
2026-07-16 14:47     ` Simon Horman
2026-07-16 17:04       ` Alice Mikityanska
2026-07-22 11:05         ` Paolo Abeni
2026-07-10 13:42   ` [PATCH net-next v9 5/9] udp: Validate UDP length in udp_gro_receive Alice Mikityanska
2026-07-16 14:48     ` Simon Horman
2026-07-16 18:32       ` Alice Mikityanska
2026-07-10 13:42   ` [PATCH net-next v9 6/9] udp: Set length in UDP header to 0 for big GSO packets Alice Mikityanska
2026-07-10 13:42   ` [PATCH net-next v9 7/9] vxlan: Enable BIG TCP packets Alice Mikityanska
2026-07-10 13:42   ` [PATCH net-next v9 8/9] geneve: " Alice Mikityanska
2026-07-16 14:48     ` Simon Horman
2026-07-16 18:45       ` Alice Mikityanska
2026-07-10 13:42   ` [PATCH net-next v9 9/9] selftests: net: Add a test for BIG TCP in UDP tunnels Alice Mikityanska
2026-07-22 11:20     ` Paolo Abeni [this message]
2026-07-11  9:47   ` [PATCH net-next v9 0/9] BIG TCP for " Nikolay Aleksandrov
2026-07-15  6:11     ` zebang.li
     [not found]     ` <(raw)>
2026-07-15  9:06       ` Alice Mikityanska
2026-07-22 12:01   ` Paolo Abeni
2026-07-22 12:45   ` patchwork-bot+netdevbpf

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=d66c1cb5-6201-4390-a7e7-0a8461bc069b@redhat.com \
    --to=pabeni@redhat.com \
    --cc=alice.kernel@fastmail.im \
    --cc=alice@isovalent.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=dsahern@kernel.org \
    --cc=edumazet@google.com \
    --cc=fw@strlen.de \
    --cc=horms@kernel.org \
    --cc=kuba@kernel.org \
    --cc=lucien.xin@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=razor@blackwall.org \
    --cc=shuah@kernel.org \
    --cc=stfomichev@gmail.com \
    --cc=willemb@google.com \
    --cc=willemdebruijn.kernel@gmail.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