[PATCH bpf-next 08/10] riscv, bpf: Add ex_insn_off and ex_jmp_off for exception table handling
Chris Mason
clm at meta.com
Mon Sep 15 07:23:39 PDT 2025
On 9/15/25 5:39 AM, Pu Lehui wrote:
>
>
> On 2025/9/13 23:51, Chris Mason wrote:
>> On Sat, 19 Jul 2025 09:17:28 +0000 Pu Lehui <pulehui at huaweicloud.com> wrote:
>>
>>> From: Pu Lehui <pulehui at huawei.com>
>>>
>>> Add ex_insn_off and ex_jmp_off fields to struct rv_jit_context so that
>>> add_exception_handler() does not need to be immediately followed by the
>>> instruction to add the exception table. ex_insn_off indicates the offset
>>> of the instruction to add the exception table, and ex_jmp_off indicates
>>> the offset to jump over the faulting instruction. This is to prepare for
>>> adding the exception table to atomic instructions later, because some
>>> atomic instructions need to perform zext or other operations.
>>>
>>
>> Hi everyone,
>>
>> I've been working on some patch review automation, and I recently ran it on
>> the bpf-next branch. I don't know the verifier well enough to decide if this
>> is a false positive, but Alexei asked me to kick off discussion, so:
>>
>>> diff --git a/arch/riscv/net/bpf_jit_comp64.c b/arch/riscv/net/bpf_jit_comp64.c
>>> index 8e813809d3054..56b592af53a64 100644
>>> --- a/arch/riscv/net/bpf_jit_comp64.c
>>> +++ b/arch/riscv/net/bpf_jit_comp64.c
>>
>> [ ... ]
>>
>>> -static int emit_stx(u8 rd, s16 off, u8 rs, u8 size, struct rv_jit_context *ctx)
>>> +static void emit_stx(u8 rd, s16 off, u8 rs, u8 size, struct rv_jit_context *ctx)
>>> {
>>> - int insns_start;
>>> -
>>> if (is_12b_int(off)) {
>>> - insns_start = ctx->ninsns;
>>> + ctx->ex_insn_off = ctx->ninsns;
>>> emit_stx_insn(rd, off, rs, size, ctx);
>>> - return ctx->ninsns - insns_start;
>>> + ctx->ex_jmp_off = ctx->ex_jmp_off;
>
> Hi Chris,
>
> I'm not sure if I have misunderstood your intention, maybe just for
> talking about reviewing automation? But the code I checked in the
> bpf-next branch is inconsistent with yours. The code here in bpf-next is:
>
> `ctx->ex_jmp_off = ctx->ninsns;`
>
> https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/arch/riscv/net/bpf_jit_comp64.c?h=next-20250912#n553
You're right, the review tooling got confused because it only indexed
the x86 version. Sorry about that, thanks for double checking.
-chris
More information about the linux-riscv
mailing list