diff options
| author | Alexei Starovoitov <[email protected]> | 2022-12-28 21:55:57 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2022-12-28 21:57:47 +0000 |
| commit | 8f161ca1105a6af6614333f13aa7be4aab8b633a (patch) | |
| tree | 18325c3c81ce797893ab42160686b98938e944d0 | |
| parent | bpf: Fix panic due to wrong pageattr of im->image (diff) | |
| download | kernel-8f161ca1105a6af6614333f13aa7be4aab8b633a.tar.gz kernel-8f161ca1105a6af6614333f13aa7be4aab8b633a.zip | |
selftests/bpf: Temporarily disable part of btf_dump:var_data test.
Commit 7443b296e699 ("x86/percpu: Move cpu_number next to current_task")
moved global per_cpu variable 'cpu_number' into pcpu_hot structure.
Therefore this part of var_data test is no longer valid.
Disable it until better solution is found.
Signed-off-by: Alexei Starovoitov <[email protected]>
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/btf_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/btf_dump.c b/tools/testing/selftests/bpf/prog_tests/btf_dump.c index 0ba2e8b9c6ac..e9ea38aa8248 100644 --- a/tools/testing/selftests/bpf/prog_tests/btf_dump.c +++ b/tools/testing/selftests/bpf/prog_tests/btf_dump.c @@ -801,7 +801,7 @@ static void test_btf_dump_struct_data(struct btf *btf, struct btf_dump *d, static void test_btf_dump_var_data(struct btf *btf, struct btf_dump *d, char *str) { -#if defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) +#if 0 TEST_BTF_DUMP_VAR(btf, d, NULL, str, "cpu_number", int, BTF_F_COMPACT, "int cpu_number = (int)100", 100); #endif |
