From b463b49379c8e648675c8be6b84d712b33b37470 Mon Sep 17 00:00:00 2001 From: Ilya Leoshkevich Date: Thu, 8 Sep 2022 18:11:07 +0800 Subject: [PATCH] selftests/bpf: Use the 25th bit in the "invalid BTF_INFO" test mainline inclusion from mainline-5.13-rc1 commit eea154a852e827c003215f7beed3e10f05471a86 category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I5Q927 CVE: NA Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=eea154a852e827c003215f7beed3e10f05471a86 ------------------------------------------------- The bit being checked by this test is no longer reserved after introducing BTF_KIND_FLOAT, so use the next one instead. Signed-off-by: Ilya Leoshkevich Signed-off-by: Alexei Starovoitov Acked-by: Yonghong Song Link: https://lore.kernel.org/bpf/20210226202256.116518-6-iii@linux.ibm.com (cherry picked from commit eea154a852e827c003215f7beed3e10f05471a86) Signed-off-by: Wang Yufen --- tools/testing/selftests/bpf/prog_tests/btf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/bpf/prog_tests/btf.c b/tools/testing/selftests/bpf/prog_tests/btf.c index 9c70f577e6a3..9d8dc0f798f5 100644 --- a/tools/testing/selftests/bpf/prog_tests/btf.c +++ b/tools/testing/selftests/bpf/prog_tests/btf.c @@ -1903,7 +1903,7 @@ static struct btf_raw_test raw_tests[] = { .raw_types = { /* int */ /* [1] */ BTF_TYPE_INT_ENC(0, BTF_INT_SIGNED, 0, 32, 4), - BTF_TYPE_ENC(0, 0x10000000, 4), + BTF_TYPE_ENC(0, 0x20000000, 4), BTF_END_RAW, }, .str_sec = "", -- GitLab