Searched refs:cur_pid (Results 1 – 7 of 7) sorted by relevance
/linux-6.1.9/tools/testing/selftests/bpf/progs/ |
D | test_legacy_printk.c | 30 int zero = 0, *my_pid, cur_pid, *my_res; in handle_legacy() local 36 cur_pid = bpf_get_current_pid_tgid() >> 32; in handle_legacy() 37 if (cur_pid != *my_pid) in handle_legacy() 50 bpf_printk("Legacy-case bpf_printk test, pid %d\n", cur_pid); in handle_legacy() 59 int zero = 0, cur_pid; in handle_modern() local 61 cur_pid = bpf_get_current_pid_tgid() >> 32; in handle_modern() 62 if (cur_pid != my_pid_var) in handle_modern() 69 bpf_printk("Modern-case bpf_printk test, pid %d\n", cur_pid); in handle_modern()
|
D | test_perf_buffer.c | 25 int zero = 0, *my_pid, cur_pid; in handle_sys_enter() local 32 cur_pid = bpf_get_current_pid_tgid() >> 32; in handle_sys_enter() 33 if (cur_pid != *my_pid) in handle_sys_enter()
|
D | test_unpriv_bpf_disabled.c | 64 int cur_pid; in sys_nanosleep_enter() local 66 cur_pid = bpf_get_current_pid_tgid() >> 32; in sys_nanosleep_enter() 68 if (cur_pid != test_pid) in sys_nanosleep_enter()
|
D | test_map_init.c | 25 int cur_pid = bpf_get_current_pid_tgid() >> 32; in sysenter_getpgid() local 27 if (cur_pid == inPid) in sysenter_getpgid()
|
D | test_ringbuf_multi.c | 59 int cur_pid = bpf_get_current_pid_tgid() >> 32; in test_ringbuf() local 64 if (cur_pid != pid) in test_ringbuf()
|
D | test_ringbuf.c | 42 int cur_pid = bpf_get_current_pid_tgid() >> 32; in test_ringbuf() local 46 if (cur_pid != pid) in test_ringbuf()
|
D | user_ringbuf_success.c | 32 int cur_pid = bpf_get_current_pid_tgid() >> 32; in is_test_process() local 34 return cur_pid == pid; in is_test_process()
|