All of lore.kernel.org
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Johan Almbladh <johan.almbladh@anyfinetworks.com>
Cc: ast@kernel.org, daniel@iogearbox.net, andrii@kernel.org,
	kafai@fb.com, songliubraving@fb.com, yhs@fb.com,
	john.fastabend@gmail.com, kpsingh@kernel.org, iii@linux.ibm.com,
	paul@cilium.io, yangtiezhu@loongson.cn, netdev@vger.kernel.org,
	bpf@vger.kernel.org
Subject: Re: [PATCH bpf v4 00/14] bpf/tests: Extend JIT test suite coverage
Date: Wed, 15 Sep 2021 20:00:10 +0000	[thread overview]
Message-ID: <163173601015.28072.4479999406200567619.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20210914091842.4186267-1-johan.almbladh@anyfinetworks.com>

Hello:

This series was applied to bpf/bpf.git (refs/heads/master):

On Tue, 14 Sep 2021 11:18:28 +0200 you wrote:
> This patch set adds a number of new tests to the test_bpf.ko test suite.
> It also corrects a faulty test case for tail call limits that failed
> erronously on the x86-64 and i386 JITs. The tests are intended to verify
> the correctness of eBPF JITs.
> 
> Changes since v3:
> * New patch 13 to fix faulty test cases for tail call error paths (13/14).
> * Fixed new tail call limit test accordingly (14/14).
> 
> [...]

Here is the summary with links:
  - [bpf,v4,01/14] bpf/tests: Allow different number of runs per test case
    https://git.kernel.org/bpf/bpf/c/540e44daebdf
  - [bpf,v4,02/14] bpf/tests: Reduce memory footprint of test suite
    https://git.kernel.org/bpf/bpf/c/b8eff1a480f7
  - [bpf,v4,03/14] bpf/tests: Add exhaustive tests of ALU shift values
    https://git.kernel.org/bpf/bpf/c/f71e9a1275f0
  - [bpf,v4,04/14] bpf/tests: Add exhaustive tests of ALU operand magnitudes
    https://git.kernel.org/bpf/bpf/c/b7396ec22547
  - [bpf,v4,05/14] bpf/tests: Add exhaustive tests of JMP operand magnitudes
    https://git.kernel.org/bpf/bpf/c/6f8f96955ca5
  - [bpf,v4,06/14] bpf/tests: Add staggered JMP and JMP32 tests
    https://git.kernel.org/bpf/bpf/c/cab8b4c0c9ab
  - [bpf,v4,07/14] bpf/tests: Add exhaustive test of LD_IMM64 immediate magnitudes
    https://git.kernel.org/bpf/bpf/c/d8a47d5a47b6
  - [bpf,v4,08/14] bpf/tests: Add test case flag for verifier zero-extension
    https://git.kernel.org/bpf/bpf/c/de0fd969640f
  - [bpf,v4,09/14] bpf/tests: Add JMP tests with small offsets
    https://git.kernel.org/bpf/bpf/c/f87c6bc98b80
  - [bpf,v4,10/14] bpf/tests: Add JMP tests with degenerate conditional
    https://git.kernel.org/bpf/bpf/c/9121d302531c
  - [bpf,v4,11/14] bpf/tests: Expand branch conversion JIT test
    https://git.kernel.org/bpf/bpf/c/b21999f4bad8
  - [bpf,v4,12/14] bpf/tests: Add more BPF_END byte order conversion tests
    https://git.kernel.org/bpf/bpf/c/d3241598b282
  - [bpf,v4,13/14] bpf/tests: Fix error in tail call limit tests
    https://git.kernel.org/bpf/bpf/c/fe89f6cabaed
  - [bpf,v4,14/14] bpf/tests: Add tail call limit test with external function call
    https://git.kernel.org/bpf/bpf/c/bc23f7244817

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



      parent reply	other threads:[~2021-09-15 20:00 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-14  9:18 [PATCH bpf v4 00/14] bpf/tests: Extend JIT test suite coverage Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 01/14] bpf/tests: Allow different number of runs per test case Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 02/14] bpf/tests: Reduce memory footprint of test suite Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 03/14] bpf/tests: Add exhaustive tests of ALU shift values Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 04/14] bpf/tests: Add exhaustive tests of ALU operand magnitudes Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 05/14] bpf/tests: Add exhaustive tests of JMP " Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 06/14] bpf/tests: Add staggered JMP and JMP32 tests Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 07/14] bpf/tests: Add exhaustive test of LD_IMM64 immediate magnitudes Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 08/14] bpf/tests: Add test case flag for verifier zero-extension Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 09/14] bpf/tests: Add JMP tests with small offsets Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 10/14] bpf/tests: Add JMP tests with degenerate conditional Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 11/14] bpf/tests: Expand branch conversion JIT test Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 12/14] bpf/tests: Add more BPF_END byte order conversion tests Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 13/14] bpf/tests: Fix error in tail call limit tests Johan Almbladh
2021-09-14 12:41   ` Tiezhu Yang
2021-09-14 12:55     ` Tiezhu Yang
2021-09-14 13:09       ` Johan Almbladh
2021-09-14  9:18 ` [PATCH bpf v4 14/14] bpf/tests: Add tail call limit test with external function call Johan Almbladh
2021-09-15 20:00 ` 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=163173601015.28072.4479999406200567619.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=iii@linux.ibm.com \
    --cc=johan.almbladh@anyfinetworks.com \
    --cc=john.fastabend@gmail.com \
    --cc=kafai@fb.com \
    --cc=kpsingh@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=paul@cilium.io \
    --cc=songliubraving@fb.com \
    --cc=yangtiezhu@loongson.cn \
    --cc=yhs@fb.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 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.