Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/bpf: Don't mask result of bpf_csum_diff() in test_verifier

The bpf_csum_diff() helper has been fixed to return a 16-bit value for
all archs, so now we don't need to mask the result.

This commit is basically reverting the below:

commit 6185266c5a85 ("selftests/bpf: Mask bpf_csum_diff() return value
to 16 bits in test_verifier")

Signed-off-by: Puranjay Mohan <puranjay@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Reviewed-by: Toke Høiland-Jørgensen <toke@redhat.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20241026125339.26459-4-puranjay@kernel.org

authored by

Puranjay Mohan and committed by
Daniel Borkmann
b87f5840 6a4794d5

+1 -2
+1 -2
tools/testing/selftests/bpf/progs/verifier_array_access.c
··· 368 368 r4 = 0; \ 369 369 r5 = 0; \ 370 370 call %[bpf_csum_diff]; \ 371 - l0_%=: r0 &= 0xffff; \ 372 - exit; \ 371 + l0_%=: exit; \ 373 372 " : 374 373 : __imm(bpf_csum_diff), 375 374 __imm(bpf_map_lookup_elem),