Home
last modified time | relevance | path

Searched refs:proc_maps (Results 1 – 2 of 2) sorted by relevance

/linux/tools/testing/selftests/bpf/prog_tests/
H A Dbpf_iter.c1414 skel->links.proc_maps = bpf_program__attach_iter( in test_task_vma_common()
1415 skel->progs.proc_maps, opts); in test_task_vma_common()
1417 if (!ASSERT_OK_PTR(skel->links.proc_maps, "bpf_program__attach_iter")) { in test_task_vma_common()
1418 skel->links.proc_maps = NULL; in test_task_vma_common()
1422 iter_fd = bpf_iter_create(bpf_link__fd(skel->links.proc_maps)); in test_task_vma_common()
1457 check_bpf_link_info(skel->progs.proc_maps); in test_task_vma_common()
1483 skel->links.proc_maps = bpf_program__attach_iter( in test_task_vma_dead_task()
1484 skel->progs.proc_maps, NULL); in test_task_vma_dead_task()
1486 if (!ASSERT_OK_PTR(skel->links.proc_maps, "bpf_program__attach_iter")) { in test_task_vma_dead_task()
1487 skel->links.proc_maps in test_task_vma_dead_task()
[all...]
/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_iter_task_vmas.c26 SEC("iter/task_vma") int proc_maps(struct bpf_iter__task_vma *ctx) in proc_maps() function