mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
selftests/bpf: Revert CO-RE removal in test_ksyms_weak.
The commit 087cba799c
("selftests/bpf: Add weak/typeless ksym test for light skeleton")
added test_ksyms_weak to light skeleton testing, but remove CO-RE access.
Revert that part of commit, since light skeleton can use CO-RE in the kernel.
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211201181040.23337-17-alexei.starovoitov@gmail.com
This commit is contained in:
parent
26b367e366
commit
3268f0316a
@ -38,7 +38,7 @@ int pass_handler(const void *ctx)
|
||||
/* tests existing symbols. */
|
||||
rq = (struct rq *)bpf_per_cpu_ptr(&runqueues, 0);
|
||||
if (rq)
|
||||
out__existing_typed = 0;
|
||||
out__existing_typed = rq->cpu;
|
||||
out__existing_typeless = (__u64)&bpf_prog_active;
|
||||
|
||||
/* tests non-existent symbols. */
|
||||
|
Loading…
Reference in New Issue
Block a user