bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Eduard Zingerman <eddyz87@gmail.com>
Cc: bpf@vger.kernel.org, ast@kernel.org, andrii@kernel.org,
	daniel@iogearbox.net, martin.lau@linux.dev, kernel-team@fb.com,
	yhs@fb.com
Subject: Re: [PATCH bpf-next 00/24] Second set of verifier/*.c migrated to inline assembly
Date: Fri, 21 Apr 2023 19:40:24 +0000	[thread overview]
Message-ID: <168210602402.3425.11823949766258477429.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20230421174234.2391278-1-eddyz87@gmail.com>

Hello:

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

On Fri, 21 Apr 2023 20:42:10 +0300 you wrote:
> This is a follow up for RFC [1]. It migrates a second batch of 23
> verifier/*.c tests to inline assembly and use of ./test_progs for
> actual execution. Link to the first batch is [2].
> 
> The migration is done by a python script (see [3]) with minimal manual
> adjustments.
> 
> [...]

Here is the summary with links:
  - [bpf-next,01/24] selftests/bpf: Add notion of auxiliary programs for test_loader
    https://git.kernel.org/bpf/bpf-next/c/63bb645b9da3
  - [bpf-next,02/24] selftests/bpf: verifier/bounds converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/c92336559ac0
  - [bpf-next,03/24] selftests/bpf: verifier/bpf_get_stack converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/965a3f913e72
  - [bpf-next,04/24] selftests/bpf: verifier/btf_ctx_access converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/37467c79e16a
  - [bpf-next,05/24] selftests/bpf: verifier/ctx converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/fcd36964f22b
  - [bpf-next,06/24] selftests/bpf: verifier/d_path converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/608028024384
  - [bpf-next,07/24] selftests/bpf: verifier/direct_packet_access converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/0a372c9c0812
  - [bpf-next,08/24] selftests/bpf: verifier/jeq_infer_not_null converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/a5828e3154d1
  - [bpf-next,09/24] selftests/bpf: verifier/loops1 converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/a6fc14dc5e8d
  - [bpf-next,10/24] selftests/bpf: verifier/lwt converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/b427ca576f83
  - [bpf-next,11/24] selftests/bpf: verifier/map_in_map converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/4a400ef9ba41
  - [bpf-next,12/24] selftests/bpf: verifier/map_ptr_mixing converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/aee1779f0dec
  - [bpf-next,13/24] selftests/bpf: verifier/precise converted to inline assembly
    (no matching commit)
  - [bpf-next,14/24] selftests/bpf: verifier/prevent_map_lookup converted to inline assembly
    (no matching commit)
  - [bpf-next,15/24] selftests/bpf: verifier/ref_tracking converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/8be632795996
  - [bpf-next,16/24] selftests/bpf: verifier/regalloc converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/16a42573c253
  - [bpf-next,17/24] selftests/bpf: verifier/runtime_jit converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/65222842ca04
  - [bpf-next,18/24] selftests/bpf: verifier/search_pruning converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/034d9ad25db3
  - [bpf-next,19/24] selftests/bpf: verifier/sock converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/426fc0e3fce2
  - [bpf-next,20/24] selftests/bpf: verifier/spin_lock converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/f323a81806bd
  - [bpf-next,21/24] selftests/bpf: verifier/subreg converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/81d1d6dd4037
  - [bpf-next,22/24] selftests/bpf: verifier/unpriv converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/82887c2568e4
  - [bpf-next,23/24] selftests/bpf: verifier/value_illegal_alu converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/efe25a330b10
  - [bpf-next,24/24] selftests/bpf: verifier/value_ptr_arith converted to inline assembly
    https://git.kernel.org/bpf/bpf-next/c/4db10a8243df

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



  parent reply	other threads:[~2023-04-21 19:40 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-21 17:42 [PATCH bpf-next 00/24] Second set of verifier/*.c migrated to inline assembly Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 01/24] selftests/bpf: Add notion of auxiliary programs for test_loader Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 02/24] selftests/bpf: verifier/bounds converted to inline assembly Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 03/24] selftests/bpf: verifier/bpf_get_stack " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 04/24] selftests/bpf: verifier/btf_ctx_access " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 05/24] selftests/bpf: verifier/ctx " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 06/24] selftests/bpf: verifier/d_path " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 07/24] selftests/bpf: verifier/direct_packet_access " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 08/24] selftests/bpf: verifier/jeq_infer_not_null " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 09/24] selftests/bpf: verifier/loops1 " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 10/24] selftests/bpf: verifier/lwt " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 11/24] selftests/bpf: verifier/map_in_map " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 12/24] selftests/bpf: verifier/map_ptr_mixing " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 13/24] selftests/bpf: verifier/precise " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 14/24] selftests/bpf: verifier/prevent_map_lookup " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 15/24] selftests/bpf: verifier/ref_tracking " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 16/24] selftests/bpf: verifier/regalloc " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 17/24] selftests/bpf: verifier/runtime_jit " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 18/24] selftests/bpf: verifier/search_pruning " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 19/24] selftests/bpf: verifier/sock " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 20/24] selftests/bpf: verifier/spin_lock " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 21/24] selftests/bpf: verifier/subreg " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 22/24] selftests/bpf: verifier/unpriv " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 23/24] selftests/bpf: verifier/value_illegal_alu " Eduard Zingerman
2023-04-21 17:42 ` [PATCH bpf-next 24/24] selftests/bpf: verifier/value_ptr_arith " Eduard Zingerman
2023-04-21 19:40 ` patchwork-bot+netdevbpf [this message]
2023-04-21 19:49   ` [PATCH bpf-next 00/24] Second set of verifier/*.c migrated " Eduard Zingerman
2023-04-21 19:53     ` Alexei Starovoitov
2023-04-21 19:48 ` Alexei Starovoitov
2023-04-21 20:00   ` Eduard Zingerman

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=168210602402.3425.11823949766258477429.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=eddyz87@gmail.com \
    --cc=kernel-team@fb.com \
    --cc=martin.lau@linux.dev \
    --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 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).