public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Bastien Curutchet (Schneider Electric) <bastien.curutchet@bootlin.com>
Cc: bjorn@kernel.org, magnus.karlsson@intel.com,
	maciej.fijalkowski@intel.com, jonathan.lemon@gmail.com,
	ast@kernel.org, daniel@iogearbox.net, andrii@kernel.org,
	martin.lau@linux.dev, eddyz87@gmail.com, song@kernel.org,
	yonghong.song@linux.dev, john.fastabend@gmail.com,
	kpsingh@kernel.org, sdf@fomichev.me, haoluo@google.com,
	jolsa@kernel.org, mykolal@fb.com, shuah@kernel.org,
	davem@davemloft.net, kuba@kernel.org, hawk@kernel.org,
	thomas.petazzoni@bootlin.com, alexis.lothore@bootlin.com,
	netdev@vger.kernel.org, bpf@vger.kernel.org,
	linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH bpf-next v7 00/15] selftests/bpf: Integrate test_xsk.c to test_progs framework
Date: Fri, 31 Oct 2025 16:44:38 +0000	[thread overview]
Message-ID: <176192907800.534773.1083705735783093321.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20251031-xsk-v7-0-39fe486593a3@bootlin.com>

Hello:

This series was applied to bpf/bpf-next.git (master)
by Alexei Starovoitov <ast@kernel.org>:

On Fri, 31 Oct 2025 09:04:36 +0100 you wrote:
> Hi all,
> 
> The test_xsk.sh script covers many AF_XDP use cases. The tests it runs
> are defined in xksxceiver.c. Since this script is used to test real
> hardware, the goal here is to leave it as it is, and only integrate the
> tests that run on veth peers into the test_progs framework.
> 
> [...]

Here is the summary with links:
  - [bpf-next,v7,01/15] selftests/bpf: test_xsk: Split xskxceiver
    https://git.kernel.org/bpf/bpf-next/c/3ab77f35a75e
  - [bpf-next,v7,02/15] selftests/bpf: test_xsk: Initialize bitmap before use
    https://git.kernel.org/bpf/bpf-next/c/2233ef8bba81
  - [bpf-next,v7,03/15] selftests/bpf: test_xsk: Fix __testapp_validate_traffic()'s return value
    https://git.kernel.org/bpf/bpf-next/c/cadc0c1fd79c
  - [bpf-next,v7,04/15] selftests/bpf: test_xsk: fix memory leak in testapp_stats_rx_dropped()
    https://git.kernel.org/bpf/bpf-next/c/d66e49ffa020
  - [bpf-next,v7,05/15] selftests/bpf: test_xsk: fix memory leak in testapp_xdp_shared_umem()
    https://git.kernel.org/bpf/bpf-next/c/bea4f03897c0
  - [bpf-next,v7,06/15] selftests/bpf: test_xsk: Wrap test clean-up in functions
    https://git.kernel.org/bpf/bpf-next/c/e3dfa0faf1f7
  - [bpf-next,v7,07/15] selftests/bpf: test_xsk: Release resources when swap fails
    https://git.kernel.org/bpf/bpf-next/c/f477b0fd75f5
  - [bpf-next,v7,08/15] selftests/bpf: test_xsk: Add return value to init_iface()
    https://git.kernel.org/bpf/bpf-next/c/e645bcfb16ea
  - [bpf-next,v7,09/15] selftests/bpf: test_xsk: Don't exit immediately when xsk_attach fails
    https://git.kernel.org/bpf/bpf-next/c/f12f1b5d14b0
  - [bpf-next,v7,10/15] selftests/bpf: test_xsk: Don't exit immediately when gettimeofday fails
    https://git.kernel.org/bpf/bpf-next/c/3f09728f9080
  - [bpf-next,v7,11/15] selftests/bpf: test_xsk: Don't exit immediately when workers fail
    https://git.kernel.org/bpf/bpf-next/c/5b2a757a1619
  - [bpf-next,v7,12/15] selftests/bpf: test_xsk: Don't exit immediately if validate_traffic fails
    https://git.kernel.org/bpf/bpf-next/c/844b13a9ff54
  - [bpf-next,v7,13/15] selftests/bpf: test_xsk: Don't exit immediately on allocation failures
    https://git.kernel.org/bpf/bpf-next/c/7a96615f2e2d
  - [bpf-next,v7,14/15] selftests/bpf: test_xsk: Isolate non-CI tests
    https://git.kernel.org/bpf/bpf-next/c/75fc630867bb
  - [bpf-next,v7,15/15] selftests/bpf: test_xsk: Integrate test_xsk.c to test_progs framework
    https://git.kernel.org/bpf/bpf-next/c/d1aec26fce25

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



      parent reply	other threads:[~2025-10-31 16:45 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-31  8:04 [PATCH bpf-next v7 00/15] selftests/bpf: Integrate test_xsk.c to test_progs framework Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 01/15] selftests/bpf: test_xsk: Split xskxceiver Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 02/15] selftests/bpf: test_xsk: Initialize bitmap before use Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 03/15] selftests/bpf: test_xsk: Fix __testapp_validate_traffic()'s return value Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 04/15] selftests/bpf: test_xsk: fix memory leak in testapp_stats_rx_dropped() Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 05/15] selftests/bpf: test_xsk: fix memory leak in testapp_xdp_shared_umem() Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 06/15] selftests/bpf: test_xsk: Wrap test clean-up in functions Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 07/15] selftests/bpf: test_xsk: Release resources when swap fails Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 08/15] selftests/bpf: test_xsk: Add return value to init_iface() Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 09/15] selftests/bpf: test_xsk: Don't exit immediately when xsk_attach fails Bastien Curutchet (eBPF Foundation)
2025-10-31  8:42   ` bot+bpf-ci
2025-10-31  8:04 ` [PATCH bpf-next v7 10/15] selftests/bpf: test_xsk: Don't exit immediately when gettimeofday fails Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 11/15] selftests/bpf: test_xsk: Don't exit immediately when workers fail Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 12/15] selftests/bpf: test_xsk: Don't exit immediately if validate_traffic fails Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 13/15] selftests/bpf: test_xsk: Don't exit immediately on allocation failures Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 14/15] selftests/bpf: test_xsk: Isolate non-CI tests Bastien Curutchet (eBPF Foundation)
2025-10-31  8:04 ` [PATCH bpf-next v7 15/15] selftests/bpf: test_xsk: Integrate test_xsk.c to test_progs framework Bastien Curutchet (eBPF Foundation)
2025-10-31 16:44 ` patchwork-bot+netdevbpf [this message]

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=176192907800.534773.1083705735783093321.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=alexis.lothore@bootlin.com \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bastien.curutchet@bootlin.com \
    --cc=bjorn@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=eddyz87@gmail.com \
    --cc=haoluo@google.com \
    --cc=hawk@kernel.org \
    --cc=john.fastabend@gmail.com \
    --cc=jolsa@kernel.org \
    --cc=jonathan.lemon@gmail.com \
    --cc=kpsingh@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=maciej.fijalkowski@intel.com \
    --cc=magnus.karlsson@intel.com \
    --cc=martin.lau@linux.dev \
    --cc=mykolal@fb.com \
    --cc=netdev@vger.kernel.org \
    --cc=sdf@fomichev.me \
    --cc=shuah@kernel.org \
    --cc=song@kernel.org \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=yonghong.song@linux.dev \
    /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