]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
selftests/bpf: Fix endianness issues in atomic tests
authorIlya Leoshkevich <iii@linux.ibm.com>
Wed, 10 Feb 2021 02:07:13 +0000 (03:07 +0100)
committerAndrii Nakryiko <andrii@kernel.org>
Wed, 10 Feb 2021 19:55:22 +0000 (11:55 -0800)
Atomic tests store a DW, but then load it back as a W from the same
address. This doesn't work on big-endian systems, and since the point
of those tests is not testing narrow loads, fix simply by loading a
DW.

Fixes: 98d666d05a1d ("bpf: Add tests for new BPF atomic operations")
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20210210020713.77911-1-iii@linux.ibm.com
tools/testing/selftests/bpf/verifier/atomic_and.c
tools/testing/selftests/bpf/verifier/atomic_or.c
tools/testing/selftests/bpf/verifier/atomic_xor.c

index 600bc5e0f14301785cd80912b2f85942f8325d48..1bdc8e6684f7c2d314d894dee82b3d0aaf1e2e5a 100644 (file)
@@ -7,7 +7,7 @@
                BPF_MOV64_IMM(BPF_REG_1, 0x011),
                BPF_ATOMIC_OP(BPF_DW, BPF_AND, BPF_REG_10, BPF_REG_1, -8),
                /* if (val != 0x010) exit(2); */
-               BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_10, -8),
+               BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_10, -8),
                BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0x010, 2),
                BPF_MOV64_IMM(BPF_REG_0, 2),
                BPF_EXIT_INSN(),
index ebe6e51455ba4bd4cc7426fc4164d125974d8f20..70f982e1f9f05fc41c9da5f887d26f05df6e742b 100644 (file)
@@ -7,7 +7,7 @@
                BPF_MOV64_IMM(BPF_REG_1, 0x011),
                BPF_ATOMIC_OP(BPF_DW, BPF_OR, BPF_REG_10, BPF_REG_1, -8),
                /* if (val != 0x111) exit(2); */
-               BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_10, -8),
+               BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_10, -8),
                BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0x111, 2),
                BPF_MOV64_IMM(BPF_REG_0, 2),
                BPF_EXIT_INSN(),
index eb791e547b47cccb537060b56ee595591805c1eb..74e8fb46694bcd3cfb5ef2355f59b90ec9b5904b 100644 (file)
@@ -7,7 +7,7 @@
                BPF_MOV64_IMM(BPF_REG_1, 0x011),
                BPF_ATOMIC_OP(BPF_DW, BPF_XOR, BPF_REG_10, BPF_REG_1, -8),
                /* if (val != 0x101) exit(2); */
-               BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_10, -8),
+               BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_10, -8),
                BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0x101, 2),
                BPF_MOV64_IMM(BPF_REG_0, 2),
                BPF_EXIT_INSN(),