linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Pu Lehui <pulehui@huaweicloud.com>
Cc: bpf@vger.kernel.org, linux-riscv@lists.infradead.org,
	linux-kernel@vger.kernel.org, bjorn@kernel.org,
	puranjay@kernel.org, palmer@dabbelt.com, alex@ghiti.fr,
	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, pulehui@huawei.com
Subject: Re: [PATCH bpf-next 00/10] Add support arena atomics for RV64
Date: Fri, 15 Aug 2025 08:50:19 +0000	[thread overview]
Message-ID: <175524781950.988422.3130461067803981757.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20250719091730.2660197-1-pulehui@huaweicloud.com>

Hello:

This series was applied to bpf/bpf-next.git (master)
by Daniel Borkmann <daniel@iogearbox.net>:

On Sat, 19 Jul 2025 09:17:20 +0000 you wrote:
> From: Pu Lehui <pulehui@huawei.com>
> 
> patch 1-3 refactor redundant load and store operations.
> patch 4-7 add Zacas instructions for cmpxchg.
> patch 8 optimizes exception table handling.
> patch 9-10 add support arena atomics for RV64.
> 
> [...]

Here is the summary with links:
  - [bpf-next,01/10] riscv, bpf: Extract emit_stx() helper
    https://git.kernel.org/bpf/bpf-next/c/02fc01adec1c
  - [bpf-next,02/10] riscv, bpf: Extract emit_st() helper
    https://git.kernel.org/bpf/bpf-next/c/d92c11a6b55b
  - [bpf-next,03/10] riscv, bpf: Extract emit_ldx() helper
    https://git.kernel.org/bpf/bpf-next/c/01422a4f2c78
  - [bpf-next,04/10] riscv: Separate toolchain support dependency from RISCV_ISA_ZACAS
    https://git.kernel.org/bpf/bpf-next/c/ec74ae56626b
  - [bpf-next,05/10] riscv, bpf: Add rv_ext_enabled macro for runtime detection extentsion
    https://git.kernel.org/bpf/bpf-next/c/5090b339eeb3
  - [bpf-next,06/10] riscv, bpf: Add Zacas instructions
    https://git.kernel.org/bpf/bpf-next/c/de39d2c4cdb6
  - [bpf-next,07/10] riscv, bpf: Optimize cmpxchg insn with Zacas support
    https://git.kernel.org/bpf/bpf-next/c/1c0196b878a6
  - [bpf-next,08/10] riscv, bpf: Add ex_insn_off and ex_jmp_off for exception table handling
    https://git.kernel.org/bpf/bpf-next/c/b18f4aae6a5d
  - [bpf-next,09/10] riscv, bpf: Add support arena atomics for RV64
    https://git.kernel.org/bpf/bpf-next/c/fb7cefabae81
  - [bpf-next,10/10] selftests/bpf: Enable arena atomics tests for RV64
    https://git.kernel.org/bpf/bpf-next/c/dc0fe956144d

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-08-15  8:50 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-19  9:17 [PATCH bpf-next 00/10] Add support arena atomics for RV64 Pu Lehui
2025-07-19  9:17 ` [PATCH bpf-next 01/10] riscv, bpf: Extract emit_stx() helper Pu Lehui
2025-08-04 20:25   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 02/10] riscv, bpf: Extract emit_st() helper Pu Lehui
2025-08-04 20:26   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 03/10] riscv, bpf: Extract emit_ldx() helper Pu Lehui
2025-08-04 20:27   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 04/10] riscv: Separate toolchain support dependency from RISCV_ISA_ZACAS Pu Lehui
2025-08-04 20:29   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 05/10] riscv, bpf: Add rv_ext_enabled macro for runtime detection extentsion Pu Lehui
2025-08-04 20:32   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 06/10] riscv, bpf: Add Zacas instructions Pu Lehui
2025-08-04 20:32   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 07/10] riscv, bpf: Optimize cmpxchg insn with Zacas support Pu Lehui
2025-08-04 20:41   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 08/10] riscv, bpf: Add ex_insn_off and ex_jmp_off for exception table handling Pu Lehui
2025-08-05  6:22   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 09/10] riscv, bpf: Add support arena atomics for RV64 Pu Lehui
2025-08-05  6:35   ` Björn Töpel
2025-07-19  9:17 ` [PATCH bpf-next 10/10] selftests/bpf: Enable arena atomics tests " Pu Lehui
2025-08-04 20:36   ` Björn Töpel
2025-07-20 20:37 ` [PATCH bpf-next 00/10] Add support arena atomics " Björn Töpel
2025-08-05  6:38 ` Björn Töpel
2025-08-05  6:52   ` Pu Lehui
2025-08-15  8:55     ` Daniel Borkmann
2025-08-15  9:08       ` Pu Lehui
2025-08-15  8:50 ` 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=175524781950.988422.3130461067803981757.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=alex@ghiti.fr \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bjorn@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=eddyz87@gmail.com \
    --cc=haoluo@google.com \
    --cc=john.fastabend@gmail.com \
    --cc=jolsa@kernel.org \
    --cc=kpsingh@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=martin.lau@linux.dev \
    --cc=palmer@dabbelt.com \
    --cc=pulehui@huawei.com \
    --cc=pulehui@huaweicloud.com \
    --cc=puranjay@kernel.org \
    --cc=sdf@fomichev.me \
    --cc=song@kernel.org \
    --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;
as well as URLs for NNTP newsgroup(s).