* [PATCH bpf-next 0/3] s390/bpf: Support load-acquire and store-release instructions
@ 2026-07-23 14:03 Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 1/3] s390/bpf: Add emit_ldx and emit_stx functions Maxim Khmelevskii
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Maxim Khmelevskii @ 2026-07-23 14:03 UTC (permalink / raw)
To: Alexei Starovoitov, Andrii Nakryiko, Daniel Borkmann
Cc: bpf, Ilya Leoshkevich, Heiko Carstens, Vasily Gorbik,
Alexander Gordeev
Support load-acquire (BPF_LOAD_ACQ) and store-release (BPF_STORE_REL)
instructions. Since s390 has strong memory model, implement
them as regular BPF_LDX/BPF_STX instructions.
Maxim Khmelevskii (3):
s390/bpf: Add emit_ldx and emit_stx functions
s390/bpf: Support load-acquire and store-release instructions
s390/bpf: Enable atomics tests for s390
arch/s390/net/bpf_jit_comp.c | 198 ++++++++++--------
.../selftests/bpf/progs/arena_atomics.c | 18 +-
tools/testing/selftests/bpf/progs/bpf_misc.h | 9 +-
3 files changed, 123 insertions(+), 102 deletions(-)
--
2.55.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH bpf-next 1/3] s390/bpf: Add emit_ldx and emit_stx functions
2026-07-23 14:03 [PATCH bpf-next 0/3] s390/bpf: Support load-acquire and store-release instructions Maxim Khmelevskii
@ 2026-07-23 14:03 ` Maxim Khmelevskii
2026-07-23 15:08 ` bot+bpf-ci
2026-07-23 14:03 ` [PATCH bpf-next 2/3] s390/bpf: Support load-acquire and store-release instructions Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 3/3] s390/bpf: Enable atomics tests for s390 Maxim Khmelevskii
2 siblings, 1 reply; 6+ messages in thread
From: Maxim Khmelevskii @ 2026-07-23 14:03 UTC (permalink / raw)
To: Alexei Starovoitov, Andrii Nakryiko, Daniel Borkmann
Cc: bpf, Ilya Leoshkevich, Heiko Carstens, Vasily Gorbik,
Alexander Gordeev
Add new functions for load and store to reuse
them in the load-acquire and store-release logic.
Reviewed-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Maxim Khmelevskii <max@linux.ibm.com>
---
arch/s390/net/bpf_jit_comp.c | 167 +++++++++++++++++------------------
1 file changed, 82 insertions(+), 85 deletions(-)
diff --git a/arch/s390/net/bpf_jit_comp.c b/arch/s390/net/bpf_jit_comp.c
index 31749c0362ca..e3dc0df551a7 100644
--- a/arch/s390/net/bpf_jit_comp.c
+++ b/arch/s390/net/bpf_jit_comp.c
@@ -830,6 +830,72 @@ static int bpf_jit_probe_post(struct bpf_jit *jit, struct bpf_prog *fp,
return 0;
}
+static int emit_ldx(struct bpf_jit *jit, struct bpf_prog *fp, struct bpf_insn *insn)
+{
+ struct bpf_jit_probe probe;
+
+ bpf_jit_probe_init(&probe);
+ bpf_jit_probe_load_pre(jit, insn, &probe);
+
+ switch (BPF_SIZE(insn->code)) {
+ case BPF_B: /* dst = *(u8 *)(ul) (src + off) */
+ /* llgc %dst,off(%src,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0090, insn->dst_reg, insn->src_reg,
+ probe.arena_reg, insn->off);
+ break;
+ case BPF_H: /* dst = *(u16 *)(ul) (src + off) */
+ /* llgh %dst,off(%src,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0091, insn->dst_reg, insn->src_reg,
+ probe.arena_reg, insn->off);
+ break;
+ case BPF_W: /* dst = *(u32 *)(ul) (src + off) */
+ /* llgf %dst,off(%src,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0016, insn->dst_reg, insn->src_reg,
+ probe.arena_reg, insn->off);
+ break;
+ case BPF_DW: /* dst = *(u64 *)(ul) (src + off) */
+ /* lg %dst,off(%src,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0004, insn->dst_reg, insn->src_reg,
+ probe.arena_reg, insn->off);
+ break;
+ }
+
+ return bpf_jit_probe_post(jit, fp, &probe);
+}
+
+static int emit_stx(struct bpf_jit *jit, struct bpf_prog *fp, struct bpf_insn *insn)
+{
+ struct bpf_jit_probe probe;
+
+ bpf_jit_probe_init(&probe);
+ bpf_jit_probe_store_pre(jit, insn, &probe);
+
+ switch (BPF_SIZE(insn->code)) {
+ case BPF_B: /* *(u8 *)(dst + off) = src_reg */
+ /* stcy %src,off(%dst,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0072, insn->src_reg, insn->dst_reg,
+ probe.arena_reg, insn->off);
+ break;
+ case BPF_H: /* (u16 *)(dst + off) = src */
+ /* sthy %src,off(%dst,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0070, insn->src_reg, insn->dst_reg,
+ probe.arena_reg, insn->off);
+ break;
+ case BPF_W: /* *(u32 *)(dst + off) = src */
+ /* sty %src,off(%dst,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0050, insn->src_reg, insn->dst_reg,
+ probe.arena_reg, insn->off);
+ break;
+ case BPF_DW: /* (u64 *)(dst + off) = src */
+ /* stg %src,off(%dst,%arena) */
+ EMIT6_DISP_LH(0xe3000000, 0x0024, insn->src_reg, insn->dst_reg,
+ probe.arena_reg, insn->off);
+ break;
+ }
+
+ return bpf_jit_probe_post(jit, fp, &probe);
+}
+
/*
* Sign- or zero-extend the register if necessary
*/
@@ -1477,44 +1543,13 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
*/
case BPF_STX | BPF_MEM | BPF_B: /* *(u8 *)(dst + off) = src_reg */
case BPF_STX | BPF_PROBE_MEM32 | BPF_B:
- bpf_jit_probe_store_pre(jit, insn, &probe);
- /* stcy %src,off(%dst,%arena) */
- EMIT6_DISP_LH(0xe3000000, 0x0072, src_reg, dst_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
- if (err < 0)
- return err;
- jit->seen |= SEEN_MEM;
- break;
case BPF_STX | BPF_MEM | BPF_H: /* (u16 *)(dst + off) = src */
case BPF_STX | BPF_PROBE_MEM32 | BPF_H:
- bpf_jit_probe_store_pre(jit, insn, &probe);
- /* sthy %src,off(%dst,%arena) */
- EMIT6_DISP_LH(0xe3000000, 0x0070, src_reg, dst_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
- if (err < 0)
- return err;
- jit->seen |= SEEN_MEM;
- break;
case BPF_STX | BPF_MEM | BPF_W: /* *(u32 *)(dst + off) = src */
case BPF_STX | BPF_PROBE_MEM32 | BPF_W:
- bpf_jit_probe_store_pre(jit, insn, &probe);
- /* sty %src,off(%dst,%arena) */
- EMIT6_DISP_LH(0xe3000000, 0x0050, src_reg, dst_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
- if (err < 0)
- return err;
- jit->seen |= SEEN_MEM;
- break;
case BPF_STX | BPF_MEM | BPF_DW: /* (u64 *)(dst + off) = src */
case BPF_STX | BPF_PROBE_MEM32 | BPF_DW:
- bpf_jit_probe_store_pre(jit, insn, &probe);
- /* stg %src,off(%dst,%arena) */
- EMIT6_DISP_LH(0xe3000000, 0x0024, src_reg, dst_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
+ err = emit_stx(jit, fp, insn);
if (err < 0)
return err;
jit->seen |= SEEN_MEM;
@@ -1574,8 +1609,12 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
/*
* BPF_ATOMIC
*/
+ case BPF_STX | BPF_ATOMIC | BPF_B:
+ case BPF_STX | BPF_ATOMIC | BPF_H:
case BPF_STX | BPF_ATOMIC | BPF_DW:
case BPF_STX | BPF_ATOMIC | BPF_W:
+ case BPF_STX | BPF_PROBE_ATOMIC | BPF_B:
+ case BPF_STX | BPF_PROBE_ATOMIC | BPF_H:
case BPF_STX | BPF_PROBE_ATOMIC | BPF_DW:
case BPF_STX | BPF_PROBE_ATOMIC | BPF_W:
{
@@ -1687,15 +1726,20 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
case BPF_LDX | BPF_MEM | BPF_B: /* dst = *(u8 *)(ul) (src + off) */
case BPF_LDX | BPF_PROBE_MEM | BPF_B:
case BPF_LDX | BPF_PROBE_MEM32 | BPF_B:
- bpf_jit_probe_load_pre(jit, insn, &probe);
- /* llgc %dst,off(%src,%arena) */
- EMIT6_DISP_LH(0xe3000000, 0x0090, dst_reg, src_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
+ case BPF_LDX | BPF_MEM | BPF_H: /* dst = *(u16 *)(ul) (src + off) */
+ case BPF_LDX | BPF_PROBE_MEM | BPF_H:
+ case BPF_LDX | BPF_PROBE_MEM32 | BPF_H:
+ case BPF_LDX | BPF_MEM | BPF_W: /* dst = *(u32 *)(ul) (src + off) */
+ case BPF_LDX | BPF_PROBE_MEM | BPF_W:
+ case BPF_LDX | BPF_PROBE_MEM32 | BPF_W:
+ case BPF_LDX | BPF_MEM | BPF_DW: /* dst = *(u64 *)(ul) (src + off) */
+ case BPF_LDX | BPF_PROBE_MEM | BPF_DW:
+ case BPF_LDX | BPF_PROBE_MEM32 | BPF_DW:
+ err = emit_ldx(jit, fp, insn);
if (err < 0)
return err;
jit->seen |= SEEN_MEM;
- if (insn_is_zext(&insn[1]))
+ if (BPF_SIZE(insn->code) != BPF_DW && insn_is_zext(&insn[1]))
insn_count = 2;
break;
case BPF_LDX | BPF_MEMSX | BPF_B: /* dst = *(s8 *)(ul) (src + off) */
@@ -1708,20 +1752,6 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
return err;
jit->seen |= SEEN_MEM;
break;
- case BPF_LDX | BPF_MEM | BPF_H: /* dst = *(u16 *)(ul) (src + off) */
- case BPF_LDX | BPF_PROBE_MEM | BPF_H:
- case BPF_LDX | BPF_PROBE_MEM32 | BPF_H:
- bpf_jit_probe_load_pre(jit, insn, &probe);
- /* llgh %dst,off(%src,%arena) */
- EMIT6_DISP_LH(0xe3000000, 0x0091, dst_reg, src_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
- if (err < 0)
- return err;
- jit->seen |= SEEN_MEM;
- if (insn_is_zext(&insn[1]))
- insn_count = 2;
- break;
case BPF_LDX | BPF_MEMSX | BPF_H: /* dst = *(s16 *)(ul) (src + off) */
case BPF_LDX | BPF_PROBE_MEMSX | BPF_H:
bpf_jit_probe_load_pre(jit, insn, &probe);
@@ -1732,20 +1762,6 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
return err;
jit->seen |= SEEN_MEM;
break;
- case BPF_LDX | BPF_MEM | BPF_W: /* dst = *(u32 *)(ul) (src + off) */
- case BPF_LDX | BPF_PROBE_MEM | BPF_W:
- case BPF_LDX | BPF_PROBE_MEM32 | BPF_W:
- bpf_jit_probe_load_pre(jit, insn, &probe);
- /* llgf %dst,off(%src) */
- jit->seen |= SEEN_MEM;
- EMIT6_DISP_LH(0xe3000000, 0x0016, dst_reg, src_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
- if (err < 0)
- return err;
- if (insn_is_zext(&insn[1]))
- insn_count = 2;
- break;
case BPF_LDX | BPF_MEMSX | BPF_W: /* dst = *(s32 *)(ul) (src + off) */
case BPF_LDX | BPF_PROBE_MEMSX | BPF_W:
bpf_jit_probe_load_pre(jit, insn, &probe);
@@ -1756,18 +1772,6 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
if (err < 0)
return err;
break;
- case BPF_LDX | BPF_MEM | BPF_DW: /* dst = *(u64 *)(ul) (src + off) */
- case BPF_LDX | BPF_PROBE_MEM | BPF_DW:
- case BPF_LDX | BPF_PROBE_MEM32 | BPF_DW:
- bpf_jit_probe_load_pre(jit, insn, &probe);
- /* lg %dst,off(%src,%arena) */
- jit->seen |= SEEN_MEM;
- EMIT6_DISP_LH(0xe3000000, 0x0004, dst_reg, src_reg,
- probe.arena_reg, off);
- err = bpf_jit_probe_post(jit, fp, &probe);
- if (err < 0)
- return err;
- break;
/*
* BPF_JMP / CALL
*/
@@ -3028,13 +3032,6 @@ bool bpf_jit_supports_insn(struct bpf_insn *insn, bool in_arena)
if (!in_arena)
return true;
switch (insn->code) {
- case BPF_STX | BPF_ATOMIC | BPF_B:
- case BPF_STX | BPF_ATOMIC | BPF_H:
- case BPF_STX | BPF_ATOMIC | BPF_W:
- case BPF_STX | BPF_ATOMIC | BPF_DW:
- if (bpf_atomic_is_load_store(insn))
- return false;
- break;
case BPF_LDX | BPF_MEMSX | BPF_B:
case BPF_LDX | BPF_MEMSX | BPF_H:
case BPF_LDX | BPF_MEMSX | BPF_W:
--
2.55.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH bpf-next 2/3] s390/bpf: Support load-acquire and store-release instructions
2026-07-23 14:03 [PATCH bpf-next 0/3] s390/bpf: Support load-acquire and store-release instructions Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 1/3] s390/bpf: Add emit_ldx and emit_stx functions Maxim Khmelevskii
@ 2026-07-23 14:03 ` Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 3/3] s390/bpf: Enable atomics tests for s390 Maxim Khmelevskii
2 siblings, 0 replies; 6+ messages in thread
From: Maxim Khmelevskii @ 2026-07-23 14:03 UTC (permalink / raw)
To: Alexei Starovoitov, Andrii Nakryiko, Daniel Borkmann
Cc: bpf, Ilya Leoshkevich, Heiko Carstens, Vasily Gorbik,
Alexander Gordeev
Support load-acquire (BPF_LOAD_ACQ) and store-release (BPF_STORE_REL)
instructions. Since s390 has strong memory model, implement
them as regular BPF_LDX/BPF_STX instructions.
Tested with:
./test_progs -t verifier_load_acquire,verifier_store_release,atomics
Reviewed-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Maxim Khmelevskii <max@linux.ibm.com>
---
arch/s390/net/bpf_jit_comp.c | 31 +++++++++++++++++++++++--------
1 file changed, 23 insertions(+), 8 deletions(-)
diff --git a/arch/s390/net/bpf_jit_comp.c b/arch/s390/net/bpf_jit_comp.c
index e3dc0df551a7..c98ab2eece57 100644
--- a/arch/s390/net/bpf_jit_comp.c
+++ b/arch/s390/net/bpf_jit_comp.c
@@ -743,10 +743,12 @@ static void bpf_jit_probe_load_pre(struct bpf_jit *jit, struct bpf_insn *insn,
{
if (BPF_MODE(insn->code) != BPF_PROBE_MEM &&
BPF_MODE(insn->code) != BPF_PROBE_MEMSX &&
- BPF_MODE(insn->code) != BPF_PROBE_MEM32)
+ BPF_MODE(insn->code) != BPF_PROBE_MEM32 &&
+ BPF_MODE(insn->code) != BPF_PROBE_ATOMIC)
return;
- if (BPF_MODE(insn->code) == BPF_PROBE_MEM32) {
+ if (BPF_MODE(insn->code) == BPF_PROBE_MEM32 ||
+ BPF_MODE(insn->code) == BPF_PROBE_ATOMIC) {
/* lgrl %r1,kern_arena */
EMIT6_PCREL_RILB(0xc4080000, REG_W1, jit->kern_arena);
probe->arena_reg = REG_W1;
@@ -758,7 +760,8 @@ static void bpf_jit_probe_load_pre(struct bpf_jit *jit, struct bpf_insn *insn,
static void bpf_jit_probe_store_pre(struct bpf_jit *jit, struct bpf_insn *insn,
struct bpf_jit_probe *probe)
{
- if (BPF_MODE(insn->code) != BPF_PROBE_MEM32)
+ if (BPF_MODE(insn->code) != BPF_PROBE_MEM32 &&
+ BPF_MODE(insn->code) != BPF_PROBE_ATOMIC)
return;
/* lgrl %r1,kern_arena */
@@ -1621,11 +1624,11 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
bool is32 = BPF_SIZE(insn->code) == BPF_W;
/*
- * Unlike loads and stores, atomics have only a base register,
- * but no index register. For the non-arena case, simply use
- * %dst as a base. For the arena case, use the work register
- * %r1: first, load the arena base into it, and then add %dst
- * to it.
+ * Unlike loads and stores, s390 atomics have only a base
+ * register, but no index register. For the non-arena case,
+ * simply use %dst as a base. For the arena case, use the
+ * work register %r1: first, load the arena base into it,
+ * and then add %dst to it.
*/
probe.arena_reg = dst_reg;
@@ -1712,6 +1715,18 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp,
if (err < 0)
return err;
break;
+ case BPF_LOAD_ACQ:
+ /* s390 has strong ordering, just use load */
+ err = emit_ldx(jit, fp, insn);
+ if (err < 0)
+ return err;
+ break;
+ case BPF_STORE_REL:
+ /* s390 has strong ordering, just use store */
+ err = emit_stx(jit, fp, insn);
+ if (err < 0)
+ return err;
+ break;
default:
pr_err("Unknown atomic operation %02x\n", insn->imm);
return -1;
--
2.55.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH bpf-next 3/3] s390/bpf: Enable atomics tests for s390
2026-07-23 14:03 [PATCH bpf-next 0/3] s390/bpf: Support load-acquire and store-release instructions Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 1/3] s390/bpf: Add emit_ldx and emit_stx functions Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 2/3] s390/bpf: Support load-acquire and store-release instructions Maxim Khmelevskii
@ 2026-07-23 14:03 ` Maxim Khmelevskii
2026-07-23 14:12 ` sashiko-bot
2 siblings, 1 reply; 6+ messages in thread
From: Maxim Khmelevskii @ 2026-07-23 14:03 UTC (permalink / raw)
To: Alexei Starovoitov, Andrii Nakryiko, Daniel Borkmann
Cc: bpf, Ilya Leoshkevich, Heiko Carstens, Vasily Gorbik,
Alexander Gordeev
Add s390 to the if statement, that defines CAN_USE_LOAD_ACQ_STORE_REL.
Reuse CAN_USE_LOAD_ACQ_STORE_REL in arena_atomics selftest,
to remove code duplication.
Reviewed-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Maxim Khmelevskii <max@linux.ibm.com>
---
.../selftests/bpf/progs/arena_atomics.c | 18 ++++++++++++------
tools/testing/selftests/bpf/progs/bpf_misc.h | 9 ++++++---
2 files changed, 18 insertions(+), 9 deletions(-)
diff --git a/tools/testing/selftests/bpf/progs/arena_atomics.c b/tools/testing/selftests/bpf/progs/arena_atomics.c
index 2e7751a85399..73bc2b835f3f 100644
--- a/tools/testing/selftests/bpf/progs/arena_atomics.c
+++ b/tools/testing/selftests/bpf/progs/arena_atomics.c
@@ -28,8 +28,10 @@ bool skip_all_tests = true;
#if defined(ENABLE_ATOMICS_TESTS) && \
defined(__BPF_FEATURE_ADDR_SPACE_CAST) && \
- (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \
- (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64))
+ (defined(__TARGET_ARCH_arm64) || \
+ defined(__TARGET_ARCH_x86) || \
+ (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
+ defined(__TARGET_ARCH_s390))
bool skip_lacq_srel_tests __attribute((__section__(".data"))) = false;
#else
bool skip_lacq_srel_tests = true;
@@ -315,8 +317,10 @@ int load_acquire(const void *ctx)
{
#if defined(ENABLE_ATOMICS_TESTS) && \
defined(__BPF_FEATURE_ADDR_SPACE_CAST) && \
- (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \
- (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64))
+ (defined(__TARGET_ARCH_arm64) || \
+ defined(__TARGET_ARCH_x86) || \
+ (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
+ defined(__TARGET_ARCH_s390))
#define LOAD_ACQUIRE_ARENA(SIZEOP, SIZE, SRC, DST) \
{ asm volatile ( \
@@ -367,8 +371,10 @@ int store_release(const void *ctx)
{
#if defined(ENABLE_ATOMICS_TESTS) && \
defined(__BPF_FEATURE_ADDR_SPACE_CAST) && \
- (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \
- (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64))
+ (defined(__TARGET_ARCH_arm64) || \
+ defined(__TARGET_ARCH_x86) || \
+ (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
+ defined(__TARGET_ARCH_s390))
#define STORE_RELEASE_ARENA(SIZEOP, DST, VAL) \
{ asm volatile ( \
diff --git a/tools/testing/selftests/bpf/progs/bpf_misc.h b/tools/testing/selftests/bpf/progs/bpf_misc.h
index b0c441384f20..5eacf1b43252 100644
--- a/tools/testing/selftests/bpf/progs/bpf_misc.h
+++ b/tools/testing/selftests/bpf/progs/bpf_misc.h
@@ -264,9 +264,12 @@
#endif
#if __clang_major__ >= 18 && defined(ENABLE_ATOMICS_TESTS) && \
- (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \
- (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
- defined(__TARGET_ARCH_powerpc) || defined(__TARGET_ARCH_loongarch))
+ (defined(__TARGET_ARCH_arm64) || \
+ defined(__TARGET_ARCH_x86) || \
+ (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
+ defined(__TARGET_ARCH_s390) || \
+ defined(__TARGET_ARCH_powerpc) || \
+ defined(__TARGET_ARCH_loongarch))
#define CAN_USE_LOAD_ACQ_STORE_REL
#endif
--
2.55.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH bpf-next 3/3] s390/bpf: Enable atomics tests for s390
2026-07-23 14:03 ` [PATCH bpf-next 3/3] s390/bpf: Enable atomics tests for s390 Maxim Khmelevskii
@ 2026-07-23 14:12 ` sashiko-bot
0 siblings, 0 replies; 6+ messages in thread
From: sashiko-bot @ 2026-07-23 14:12 UTC (permalink / raw)
To: Maxim Khmelevskii; +Cc: bpf
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] Meaningful code and commit message mismatch: failure to reuse CAN_USE_LOAD_ACQ_STORE_REL in arena_atomics.c.
--
--- Patch [3]: [PATCH bpf-next 3/3] s390/bpf: Enable atomics tests for s390 ---
commit c1e0ed2dde3c2d83049962c67b540464ea7a24d3
Author: Maxim Khmelevskii <max@linux.ibm.com>
s390/bpf: Enable atomics tests for s390
This commit adds s390 to the list of supported architectures for atomics
tests and updates CAN_USE_LOAD_ACQ_STORE_REL in bpf_misc.h.
> Reuse CAN_USE_LOAD_ACQ_STORE_REL in arena_atomics selftest,
> to remove code duplication.
[Severity: Medium]
Is this description accurate for the changes actually made in arena_atomics.c?
> diff --git a/tools/testing/selftests/bpf/progs/arena_atomics.c b/tools/testing/selftests/bpf/progs/arena_atomics.c
> index 2e7751a853999..73bc2b835f3fe 100644
> --- a/tools/testing/selftests/bpf/progs/arena_atomics.c
> +++ b/tools/testing/selftests/bpf/progs/arena_atomics.c
> @@ -28,8 +28,10 @@ bool skip_all_tests = true;
>
> #if defined(ENABLE_ATOMICS_TESTS) && \
> defined(__BPF_FEATURE_ADDR_SPACE_CAST) && \
> - (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \
> - (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64))
> + (defined(__TARGET_ARCH_arm64) || \
> + defined(__TARGET_ARCH_x86) || \
> + (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
> + defined(__TARGET_ARCH_s390))
[Severity: Medium]
Could this #if block use CAN_USE_LOAD_ACQ_STORE_REL as mentioned in the
commit message, instead of manually expanding the architecture list?
By not using the macro, it appears that powerpc and loongarch support
defined in bpf_misc.h are omitted in these checks. This manual expansion
also seems to be duplicated in load_acquire() and store_release() later
in the patch.
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260723140648.583055-5-max@linux.ibm.com?part=3
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH bpf-next 1/3] s390/bpf: Add emit_ldx and emit_stx functions
2026-07-23 14:03 ` [PATCH bpf-next 1/3] s390/bpf: Add emit_ldx and emit_stx functions Maxim Khmelevskii
@ 2026-07-23 15:08 ` bot+bpf-ci
0 siblings, 0 replies; 6+ messages in thread
From: bot+bpf-ci @ 2026-07-23 15:08 UTC (permalink / raw)
To: max, ast, andrii, daniel
Cc: bpf, iii, hca, gor, agordeev, ast, andrii, daniel, martin.lau,
eddyz87, yonghong.song, clm, ihor.solodrai
[-- Attachment #1: Type: text/plain, Size: 1405 bytes --]
> s390/bpf: Add emit_ldx and emit_stx functions
>
> Add new functions for load and store to reuse
> them in the load-acquire and store-release logic.
>
> Reviewed-by: Ilya Leoshkevich <iii@linux.ibm.com>
> Signed-off-by: Maxim Khmelevskii <max@linux.ibm.com>
This isn't a bug, but the changelog describes the commit only as adding the
emit_ldx()/emit_stx() helpers for reuse, while the diff also makes a couple
of functional changes that aren't mentioned.
It drops the arena atomic load/store rejection from bpf_jit_supports_insn():
switch (insn->code) {
case BPF_STX | BPF_ATOMIC | BPF_B:
case BPF_STX | BPF_ATOMIC | BPF_H:
case BPF_STX | BPF_ATOMIC | BPF_W:
case BPF_STX | BPF_ATOMIC | BPF_DW:
if (bpf_atomic_is_load_store(insn))
return false;
break;
and it adds new case labels to the BPF_ATOMIC switch in bpf_jit_insn():
case BPF_STX | BPF_ATOMIC | BPF_B:
case BPF_STX | BPF_ATOMIC | BPF_H:
...
case BPF_STX | BPF_PROBE_ATOMIC | BPF_B:
case BPF_STX | BPF_PROBE_ATOMIC | BPF_H:
Would it read more clearly to mention these gating changes in the changelog,
or to fold them into the commit that adds the load-acquire/store-release
handlers?
---
AI reviewed your patch. Please fix the bug or email reply why it's not a bug.
See: https://github.com/kernel-patches/vmtest/blob/master/ci/claude/README.md
CI run summary: https://github.com/kernel-patches/bpf/actions/runs/30016652277
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-07-23 15:08 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-23 14:03 [PATCH bpf-next 0/3] s390/bpf: Support load-acquire and store-release instructions Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 1/3] s390/bpf: Add emit_ldx and emit_stx functions Maxim Khmelevskii
2026-07-23 15:08 ` bot+bpf-ci
2026-07-23 14:03 ` [PATCH bpf-next 2/3] s390/bpf: Support load-acquire and store-release instructions Maxim Khmelevskii
2026-07-23 14:03 ` [PATCH bpf-next 3/3] s390/bpf: Enable atomics tests for s390 Maxim Khmelevskii
2026-07-23 14:12 ` sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox