Home
last modified time | relevance | path

Searched refs:fd1 (Results 1 – 24 of 24) sorted by relevance

/linux-5.19.10/tools/testing/selftests/powerpc/ptrace/
Dperf-hwbreak.c360 int fd1, fd2; in test_process_multi_diff_addr() local
364 fd1 = perf_process_event_open(HW_BREAKPOINT_RW, (__u64)&a, (__u64)sizeof(a)); in test_process_multi_diff_addr()
365 if (fd1 < 0) { in test_process_multi_diff_addr()
372 close(fd1); in test_process_multi_diff_addr()
377 ioctl(fd1, PERF_EVENT_IOC_RESET); in test_process_multi_diff_addr()
379 ioctl(fd1, PERF_EVENT_IOC_ENABLE); in test_process_multi_diff_addr()
382 ioctl(fd1, PERF_EVENT_IOC_DISABLE); in test_process_multi_diff_addr()
385 res = read(fd1, &breaks1, sizeof(breaks1)); in test_process_multi_diff_addr()
390 close(fd1); in test_process_multi_diff_addr()
405 int fd1, fd2; in test_process_multi_same_addr() local
[all …]
/linux-5.19.10/tools/testing/selftests/bpf/prog_tests/
Dudp_limit.c13 int fd1 = -1, fd2 = -1; in test_udp_limit() local
34 fd1 = socket(AF_INET, SOCK_DGRAM, 0); in test_udp_limit()
35 if (CHECK(fd1 < 0, "fd1", "errno %d", errno)) in test_udp_limit()
43 close(fd1); in test_udp_limit()
44 fd1 = -1; in test_udp_limit()
46 fd1 = socket(AF_INET, SOCK_DGRAM, 0); in test_udp_limit()
47 if (CHECK(fd1 < 0, "fd1-again", "errno %d", errno)) in test_udp_limit()
67 if (fd1 >= 0) in test_udp_limit()
68 close(fd1); in test_udp_limit()
Dxdp_attach.c13 int err, fd1, fd2, fd3; in serial_test_xdp_attach() local
18 err = bpf_prog_test_load(file, BPF_PROG_TYPE_XDP, &obj1, &fd1); in serial_test_xdp_attach()
21 err = bpf_obj_get_info_by_fd(fd1, &info, &len); in serial_test_xdp_attach()
40 err = bpf_xdp_attach(IFINDEX_LO, fd1, XDP_FLAGS_REPLACE, &opts); in serial_test_xdp_attach()
53 opts.old_prog_fd = fd1; in serial_test_xdp_attach()
Dsockmap_listen.c924 static int add_to_sockmap(int sock_mapfd, int fd1, int fd2) in add_to_sockmap() argument
931 value = fd1; in add_to_sockmap()
/linux-5.19.10/tools/testing/selftests/net/
Dreuseaddr_conflict.c89 int fd1, fd2; in main() local
96 fd1 = open_port(0, 1); in main()
97 if (fd1 >= 0) in main()
100 fd1 = open_port(1, 1); in main()
101 if (fd1 < 0) in main()
107 close(fd1); in main()
109 fd1 = open_port(0, 1); in main()
110 if (fd1 >= 0) in main()
Dreuseport_bpf.c309 int fd1, fd2, opt; in test_extra_filter() local
312 fd1 = socket(p.recv_family, p.protocol, 0); in test_extra_filter()
313 if (fd1 < 0) in test_extra_filter()
320 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_extra_filter()
325 attach_ebpf(fd1, 10); in test_extra_filter()
328 if (bind(fd1, addr, sockaddr_size())) in test_extra_filter()
390 int fd1, fd2, opt = 1; in test_filter_without_bind() local
393 fd1 = socket(AF_INET, SOCK_DGRAM, 0); in test_filter_without_bind()
394 if (fd1 < 0) in test_filter_without_bind()
399 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_filter_without_bind()
[all …]
/linux-5.19.10/tools/testing/selftests/kcmp/
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()
37 int fd1, fd2; in main() local
42 fd1 = open(kpath, O_RDWR | O_CREAT | O_TRUNC, 0644); in main()
45 if (fd1 < 0) { in main()
102 sys_kcmp(pid1, pid2, KCMP_FILE, fd1, fd2), in main()
114 ret = sys_kcmp(pid1, pid2, KCMP_FILE, fd1, fd1); in main()
/linux-5.19.10/tools/testing/selftests/core/
Dclose_range_test.c388 int fd1, fd2, fd3, flags, ret, status; in TEST() local
396 fd1 = open("/dev/null", O_RDWR); in TEST()
397 EXPECT_GT(fd1, 0); in TEST()
399 fd2 = dup2(fd1, 1000); in TEST()
415 flags = fcntl(fd1, F_GETFD); in TEST()
423 fd3 = dup2(fd1, 42); in TEST()
445 flags = fcntl(fd1, F_GETFD); in TEST()
453 fd3 = dup2(fd1, 42); in TEST()
460 EXPECT_EQ(close(fd1), 0); in TEST()
470 int i, fd1, fd2, fd3, flags, ret, status; in TEST() local
[all …]
/linux-5.19.10/tools/perf/tests/
Dbp_signal.c32 static int fd1; variable
75 ioctl(fd1, PERF_EVENT_IOC_DISABLE, 0); in sig_handler_2()
96 ioctl(fd1, PERF_EVENT_IOC_DISABLE, 0); in sig_handler()
241 fd1 = bp_event(__test_function, SIGIO); in test__bp_signal()
245 ioctl(fd1, PERF_EVENT_IOC_ENABLE, 0); in test__bp_signal()
255 ioctl(fd1, PERF_EVENT_IOC_DISABLE, 0); in test__bp_signal()
259 count1 = bp_count(fd1); in test__bp_signal()
263 close(fd1); in test__bp_signal()
/linux-5.19.10/tools/testing/selftests/proc/
Dfd-002-posix-eq.c27 int fd0, fd1, fd2; in main() local
36 fd1 = open(buf, O_RDONLY); in main()
37 assert(fd1 >= 0); in main()
45 rv = fstat(fd1, &st1); in main()
Dproc-pid-vm.c160 int fd, fd1; in make_exe() local
207 fd1 = open(buf, O_RDONLY|O_CLOEXEC); in make_exe()
210 return fd1; in make_exe()
/linux-5.19.10/tools/testing/selftests/sync/
Dsync.c68 int sync_merge(const char *name, int fd1, int fd2) in sync_merge() argument
77 err = ioctl(fd1, SYNC_IOC_MERGE, &data); in sync_merge()
Dsync.h36 int sync_merge(const char *name, int fd1, int fd2);
/linux-5.19.10/scripts/kconfig/
Dconfdata.c45 int fd1, fd2; in is_same() local
50 fd1 = open(file1, O_RDONLY); in is_same()
51 if (fd1 < 0) in is_same()
58 ret = fstat(fd1, &st1); in is_same()
68 map1 = mmap(NULL, st1.st_size, PROT_READ, MAP_PRIVATE, fd1, 0); in is_same()
83 close(fd1); in is_same()
/linux-5.19.10/include/linux/
Daudit.h410 extern void __audit_fd_pair(int fd1, int fd2);
433 static inline void audit_fd_pair(int fd1, int fd2) in audit_fd_pair() argument
436 __audit_fd_pair(fd1, fd2); in audit_fd_pair()
653 static inline void audit_fd_pair(int fd1, int fd2) in audit_fd_pair() argument
/linux-5.19.10/tools/testing/selftests/vm/
Dhmm-tests.c66 int fd1; in FIXTURE() local
100 self->fd1 = hmm_open(1); in FIXTURE_SETUP()
101 ASSERT_GE(self->fd1, 0); in FIXTURE_SETUP()
119 ret = close(self->fd1); in FIXTURE_TEARDOWN()
121 self->fd1 = -1; in FIXTURE_TEARDOWN()
1018 ret = hmm_dmirror_cmd(self->fd1, HMM_DMIRROR_MIGRATE, buffer, npages); in TEST_F()
1026 ret = hmm_dmirror_cmd(self->fd1, HMM_DMIRROR_MIGRATE, buffer, 3); in TEST_F()
1058 ret = hmm_dmirror_cmd(self->fd1, HMM_DMIRROR_MIGRATE, buffer, 4); in TEST_F()
1363 ret = hmm_dmirror_cmd(self->fd1, HMM_DMIRROR_MIGRATE, buffer, 1); in TEST_F()
1514 ret = hmm_dmirror_cmd(self->fd1, HMM_DMIRROR_READ, buffer, npages); in TEST_F()
/linux-5.19.10/drivers/net/wireless/ath/carl9170/
Dphy.c970 u32 d0, d1, td0, td1, fd0, fd1; in carl9170_init_rf_bank4_pwr() local
1019 fd1 = td1 << 5 | td0; in carl9170_init_rf_bank4_pwr()
1024 carl9170_regwrite(0x1c58e8, fd1); in carl9170_init_rf_bank4_pwr()
/linux-5.19.10/net/
Dsocket.c1659 int fd1, fd2, err; in __sys_socketpair() local
1675 fd1 = get_unused_fd_flags(flags); in __sys_socketpair()
1676 if (unlikely(fd1 < 0)) in __sys_socketpair()
1677 return fd1; in __sys_socketpair()
1681 put_unused_fd(fd1); in __sys_socketpair()
1685 err = put_user(fd1, &usockvec[0]); in __sys_socketpair()
1736 audit_fd_pair(fd1, fd2); in __sys_socketpair()
1738 fd_install(fd1, newfile1); in __sys_socketpair()
1744 put_unused_fd(fd1); in __sys_socketpair()
/linux-5.19.10/drivers/net/
Dgtp.c1266 u32 fd1 = nla_get_u32(data[IFLA_GTP_FD1]); in gtp_encap_enable() local
1268 sk1u = gtp_encap_enable_socket(fd1, UDP_ENCAP_GTP1U, gtp); in gtp_encap_enable()
/linux-5.19.10/tools/testing/selftests/seccomp/
Dseccomp_bpf.c298 static int __filecmp(pid_t pid1, pid_t pid2, int fd1, int fd2) in __filecmp() argument
302 return syscall(__NR_kcmp, pid1, pid2, KCMP_FILE, fd1, fd2); in __filecmp()
310 #define filecmp(pid1, pid2, fd1, fd2) ({ \ argument
313 _ret = __filecmp(pid1, pid2, fd1, fd2); \
/linux-5.19.10/kernel/
Dauditsc.c2711 void __audit_fd_pair(int fd1, int fd2) in __audit_fd_pair() argument
2715 context->fds[0] = fd1; in __audit_fd_pair()
/linux-5.19.10/Documentation/powerpc/
Dcxlflash.rst144 (herein referred to as fd1) that should be used for issuing the
/linux-5.19.10/Documentation/m68k/
Dkernel-options.rst96 /dev/fd0 stands for the first drive, /dev/fd1 for the second, and so
/linux-5.19.10/Documentation/admin-guide/
Ddevices.txt51 1 = /dev/fd1 Controller 0, drive 1, autodetect