Home
last modified time | relevance | path

Searched refs:pid2 (Results 1 – 23 of 23) sorted by relevance

/linux/tools/testing/selftests/kcmp/
H A Dkcmp_test.c23 static long sys_kcmp(int pid1, int pid2, int type, unsigned long fd1, unsigned long fd2) in sys_kcmp() argument
25 return syscall(__NR_kcmp, pid1, pid2, type, fd1, fd2); in sys_kcmp()
35 int pid1, pid2; in main() local
81 pid2 = fork(); in main()
82 if (pid2 < 0) { in main()
87 if (!pid2) { in main()
88 int pid2 = getpid(); in main() local
104 pid1, pid2, in main()
105 sys_kcmp(pid1, pid2, KCMP_FILE, fd1, fd2), in main()
106 sys_kcmp(pid1, pid2, KCMP_FILES, 0, 0), in main()
[all …]
/linux/tools/testing/selftests/powerpc/math/
H A Dfpu_syscall.c52 pid_t pid2; in test_syscall_fpu() local
58 pid2 = fork(); in test_syscall_fpu()
60 if (pid2 == -1) { in test_syscall_fpu()
67 if (pid2) in test_syscall_fpu()
68 waitpid(pid2, &child_ret, 0); in test_syscall_fpu()
H A Dvmx_syscall.c51 pid_t pid2; in test_vmx_syscall() local
62 pid2 = fork(); in test_vmx_syscall()
65 if (pid2 == -1) { in test_vmx_syscall()
71 if (pid2) in test_vmx_syscall()
72 waitpid(pid2, &child_ret, 0); in test_vmx_syscall()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dtc_links.c21 __u32 pid1, pid2, lid1, lid2; in serial_test_tc_links_basic() local
31 pid2 = id_from_prog_fd(bpf_program__fd(skel->progs.tc2)); in serial_test_tc_links_basic()
33 ASSERT_NEQ(pid1, pid2, "prog_ids_1_2"); in serial_test_tc_links_basic()
98 ASSERT_EQ(optq.prog_ids[0], pid2, "prog_ids[0]"); in serial_test_tc_links_basic()
120 __u32 pid1, pid2, pid3, pid4; in test_tc_links_before_target() local
144 pid2 = id_from_prog_fd(bpf_program__fd(skel->progs.tc2)); in test_tc_links_before_target()
148 ASSERT_NEQ(pid1, pid2, "prog_ids_1_2"); in test_tc_links_before_target()
150 ASSERT_NEQ(pid2, pid3, "prog_ids_2_3"); in test_tc_links_before_target()
189 ASSERT_EQ(optq.prog_ids[1], pid2, "prog_ids[1]"); in test_tc_links_before_target()
246 ASSERT_EQ(optq.prog_ids[3], pid2, "prog_id in test_tc_links_before_target()
274 __u32 pid1, pid2, pid3, pid4; test_tc_links_after_target() local
428 __u32 pid1, pid2, lid1, lid2; test_tc_links_revision_target() local
529 __u32 pid1, pid2, pid3; test_tc_chain_classic() local
633 __u32 pid1, pid2, pid3, lid1, lid2; test_tc_links_replace_target() local
859 __u32 pid1, pid2, lid1; test_tc_links_invalid_target() local
1172 __u32 pid1, pid2, pid3, pid4; test_tc_links_prepend_target() local
1328 __u32 pid1, pid2, pid3, pid4; test_tc_links_append_target() local
1483 __u32 pid1, pid2, pid3, pid4; test_tc_links_dev_cleanup_target() local
1584 __u32 pid1, pid2, pid3; test_tc_chain_mixed() local
1695 __u32 pid1, pid2, pid3; test_tc_links_ingress() local
1856 __u32 pid1, pid2, pid3, pid4; test_tc_links_dev_mixed() local
[all...]
H A Dtc_opts.c1402 __u32 pid1, pid2, pid3, pid4, lid2, lid4; in test_tc_opts_mixed_target() local
1427 pid2 = id_from_prog_fd(bpf_program__fd(skel->progs.tc2)); in test_tc_opts_mixed_target()
1431 ASSERT_NEQ(pid1, pid2, "prog_ids_1_2"); in test_tc_opts_mixed_target()
1433 ASSERT_NEQ(pid2, pid3, "prog_ids_2_3"); in test_tc_opts_mixed_target()
1541 ASSERT_EQ(optq.prog_ids[1], pid2, "prog_ids[1]"); in test_tc_opts_mixed_target()
1579 __u32 pid1, pid2; in test_tc_opts_demixed_target() local
1596 pid2 = id_from_prog_fd(bpf_program__fd(skel->progs.tc2)); in test_tc_opts_demixed_target()
1597 ASSERT_NEQ(pid1, pid2, "prog_ids_1_2"); in test_tc_opts_demixed_target()
/linux/tools/testing/selftests/pidfd/
H A Dpidfd_test.c252 pid_t pid2; in test_pidfd_send_signal_recycled_pid_fail() local
262 pid2 = fork(); in test_pidfd_send_signal_recycled_pid_fail()
263 if (pid2 < 0) in test_pidfd_send_signal_recycled_pid_fail()
266 if (pid2 == 0) in test_pidfd_send_signal_recycled_pid_fail()
269 if (pid2 == PID_RECYCLE) { in test_pidfd_send_signal_recycled_pid_fail()
270 snprintf(buf, sizeof(buf), "/proc/%d", pid2); in test_pidfd_send_signal_recycled_pid_fail()
271 ksft_print_msg("pid to recycle is %d\n", pid2); in test_pidfd_send_signal_recycled_pid_fail()
275 if (wait_for_pid(pid2)) in test_pidfd_send_signal_recycled_pid_fail()
278 if (pid2 >= PID_RECYCLE) in test_pidfd_send_signal_recycled_pid_fail()
286 if (pid2 != PID_RECYCLE) { in test_pidfd_send_signal_recycled_pid_fail()
H A Dpidfd_getfd_test.c31 static int sys_kcmp(pid_t pid1, pid_t pid2, int type, unsigned long idx1, in sys_kcmp() argument
34 return syscall(__NR_kcmp, pid1, pid2, type, idx1, idx2); in sys_kcmp()
H A Dpidfd_setns_test.c368 static int in_same_namespace(int ns_fd1, pid_t pid2, const char *ns) in in_same_namespace() argument
378 ns_fd2 = preserve_ns(pid2, ns); in in_same_namespace()
/linux/tools/testing/selftests/net/
H A Dfib_nexthops.sh1295 local pid2
1317 pid2=$!
1326 kill -9 $pid1 $pid2 $pid3 $pid4 $pid5
1327 wait $pid1 $pid2 $pid3 $pid4 $pid5 2>/dev/null
1343 local pid2
1371 pid2=$!
1382 kill -9 $pid1 $pid2 $pid3 $pid4 $pid5
1383 wait $pid1 $pid2 $pid3 $pid4 $pid5 2>/dev/null
2074 local pid2
2096 pid2=$!
[all …]
H A Dtest_bridge_backup_port.sh679 local pid2
703 pid2=$!
706 kill -9 $pid1 $pid2
707 wait $pid1 $pid2 2>/dev/null
H A Dtls.c1358 int pid2; in TEST_F() local
1368 pid2 = wait(&status); in TEST_F()
1370 EXPECT_EQ(res, pid2); in TEST_F()
1412 int pid2; in TEST_F() local
1428 pid2 = wait(&status); in TEST_F()
1431 EXPECT_EQ(res, pid2); in TEST_F()
2183 int pid2, status; in TEST_F() local
2191 pid2 = wait(&status); in TEST_F()
2192 EXPECT_EQ(pid2, ret); in TEST_F()
2226 int pid2, statu in TEST_F() local
2810 int status, pid2; TEST_F() local
[all...]
H A Dtest_vxlan_mdb.sh2370 local pid2
2390 pid2=$!
2397 kill -9 $pid1 $pid2 $pid3 $pid4
2398 wait $pid1 $pid2 $pid3 $pid4 2>/dev/null
/linux/tools/testing/selftests/namespaces/
H A Dlistns_permissions_test.c239 pid_t pid1, pid2; in TEST() local
304 pid2 = fork(); in TEST()
305 ASSERT_GE(pid2, 0); in TEST()
307 if (pid2 == 0) { in TEST()
358 waitpid(pid2, &status, 0); in TEST()
H A Dns_active_ref_test.c175 pid_t pid1, pid2; in TEST() local
238 pid2 = fork(); in TEST()
239 ASSERT_GE(pid2, 0); in TEST()
241 if (pid2 == 0) { in TEST()
283 waitpid(pid2, &status, 0); in TEST()
/linux/tools/perf/tests/shell/
H A Drecord_lbr.sh141 pid2=$!
163 for pid in $pid1 $pid2 $pid3 $pid4 $pid5 $pid6 $pid7 $pid8 $pid9
/linux/arch/parisc/include/asm/
H A Dkgdb.h54 unsigned long pid2; member
/linux/kernel/
H A Dpid.c387 struct pid *pid2 = right->thread_pid; in exchange_tids() local
389 struct hlist_head *head2 = &pid2->tasks[PIDTYPE_PID]; in exchange_tids()
397 rcu_assign_pointer(left->thread_pid, pid2); in exchange_tids()
401 WRITE_ONCE(left->pid, pid_nr(pid2)); in exchange_tids()
/linux/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c324 static int __filecmp(pid_t pid1, pid_t pid2, int fd1, int fd2) in __filecmp() argument
328 return syscall(__NR_kcmp, pid1, pid2, KCMP_FILE, fd1, fd2); in __filecmp()
336 #define filecmp(pid1, pid2, fd1, fd2) ({ \ argument
339 _ret = __filecmp(pid1, pid2, fd1, fd2); \
3717 pid_t pid, pid2; in TEST() local
3741 pid2 = fork(); in TEST()
3742 ASSERT_GE(pid2, 0); in TEST()
3744 if (pid2 == 0) in TEST()
3747 EXPECT_EQ(waitpid(pid2, &status, 0), pid2); in TEST()
3762 pid2 = fork(); in TEST()
[all …]
/linux/tools/perf/util/
H A Djitdump.c762 pid_t pid2; in jit_detect() local
790 pid2 = (int)strtol(p, &end, 10); in jit_detect()
803 if (pid && !(pid2 == pid || *in_pidns)) in jit_detect()
/linux/arch/powerpc/include/uapi/asm/
H A Dkvm.h188 __u32 pid1, pid2; member
/linux/tools/arch/powerpc/include/uapi/asm/
H A Dkvm.h188 __u32 pid1, pid2; member
/linux/drivers/scsi/qla2xxx/
H A Dqla_init.c9516 uint32_t pid1, pid2; in qla24xx_get_fcp_prio() local
9539 pid2 = vha->d_id.b24 & INVALID_PORT_ID; in qla24xx_get_fcp_prio()
9542 else if (pid1 == pid2) in qla24xx_get_fcp_prio()
9549 pid2 = fcport->d_id.b24 & INVALID_PORT_ID; in qla24xx_get_fcp_prio()
9552 else if (pid1 == pid2) in qla24xx_get_fcp_prio()
/linux/include/linux/
H A Dsyscalls.h922 asmlinkage long sys_kcmp(pid_t pid1, pid_t pid2, int type,