Home
last modified time | relevance | path

Searched refs:epfd (Results 1 – 18 of 18) sorted by relevance

/linux-6.15/tools/thermal/lib/
H A Dmainloop.c11 static int epfd = -1; variable
28 if (epfd < 0) in mainloop()
33 nfds = epoll_wait(epfd, events, MAX_EVENTS, timeout); in mainloop()
71 if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev) < 0) { in mainloop_add()
81 if (epoll_ctl(epfd, EPOLL_CTL_DEL, fd, NULL) < 0) in mainloop_del()
89 epfd = epoll_create(2); in mainloop_init()
90 if (epfd < 0) in mainloop_init()
103 close(epfd); in mainloop_fini()
/linux-6.15/tools/testing/selftests/net/
H A Dreuseport_bpf_cpu.c151 void receive_on_cpu(int *rcv_fd, int len, int epfd, int cpu_id, int proto) in receive_on_cpu() argument
157 i = epoll_wait(epfd, &ev, 1, -1); in receive_on_cpu()
187 int epfd, cpu; in test() local
192 epfd = epoll_create(1); in test()
193 if (epfd < 0) in test()
198 if (epoll_ctl(epfd, EPOLL_CTL_ADD, rcv_fd[cpu], &ev)) in test()
205 receive_on_cpu(rcv_fd, len, epfd, cpu, proto); in test()
211 receive_on_cpu(rcv_fd, len, epfd, cpu, proto); in test()
217 receive_on_cpu(rcv_fd, len, epfd, cpu, proto); in test()
223 receive_on_cpu(rcv_fd, len, epfd, cpu, proto); in test()
[all …]
H A Dreuseport_dualstack.c102 static int receive_once(int epfd, int proto) in receive_once() argument
108 i = epoll_wait(epfd, &ev, 1, -1); in receive_once()
131 int epfd, i, test_fd; in test() local
135 epfd = epoll_create(1); in test()
136 if (epfd < 0) in test()
142 if (epoll_ctl(epfd, EPOLL_CTL_ADD, rcv_fds[i], &ev)) in test()
148 test_fd = receive_once(epfd, proto); in test()
156 close(epfd); in test()
H A Dreuseport_bpf_numa.c161 void receive_on_node(int *rcv_fd, int len, int epfd, int node_id, int proto) in receive_on_node() argument
167 i = epoll_wait(epfd, &ev, 1, -1); in receive_on_node()
197 int epfd, node; in test() local
202 epfd = epoll_create(1); in test()
203 if (epfd < 0) in test()
208 if (epoll_ctl(epfd, EPOLL_CTL_ADD, rcv_fd[node], &ev)) in test()
217 receive_on_node(rcv_fd, len, epfd, node, proto); in test()
225 receive_on_node(rcv_fd, len, epfd, node, proto); in test()
228 close(epfd); in test()
H A Dbusy_poller.c181 static void epoll_ctl_add(int epfd, int fd, uint32_t events) in epoll_ctl_add() argument
187 if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev) == -1) in epoll_ctl_add()
264 int i, epfd, nfds; in run_poller() local
305 epfd = epoll_create1(0); in run_poller()
306 if (ioctl(epfd, EPIOCSPARAMS, &epoll_params) == -1) in run_poller()
309 epoll_ctl_add(epfd, sockfd, EPOLLIN | EPOLLOUT | EPOLLET); in run_poller()
312 nfds = epoll_wait(epfd, events, cfg_max_events, -1); in run_poller()
321 epoll_ctl_add(epfd, conn, in run_poller()
338 epoll_ctl(epfd, EPOLL_CTL_DEL, in run_poller()
H A Dreuseport_addr_any.c168 static int receive_once(int epfd, int proto) in receive_once() argument
174 i = epoll_wait(epfd, &ev, 1, 3); in receive_once()
197 int epfd, i, send_fd, recv_fd; in test() local
199 epfd = epoll_create(1); in test()
200 if (epfd < 0) in test()
206 if (epoll_ctl(epfd, EPOLL_CTL_ADD, rcv_fds[i], &ev)) in test()
212 recv_fd = receive_once(epfd, proto); in test()
217 close(epfd); in test()
H A Dtcp_fastopen_backup_key.c247 int fd, epfd; in run_one_test() local
251 epfd = epoll_create(1); in run_one_test()
252 if (epfd < 0) in run_one_test()
257 if (epoll_ctl(epfd, EPOLL_CTL_ADD, rcv_fds[i], &ev)) in run_one_test()
268 i = epoll_wait(epfd, &ev, 1, -1); in run_one_test()
276 if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev)) in run_one_test()
283 if (epoll_ctl(epfd, EPOLL_CTL_DEL, ev.data.fd, NULL)) in run_one_test()
H A Dtxtimestamp.c289 static void __epoll(int epfd) in __epoll() argument
295 ret = epoll_wait(epfd, &events, 1, cfg_poll_timeout); in __epoll()
497 int fd, i, val = 1, total_len, epfd = 0; in do_test() local
535 epfd = epoll_create(1); in do_test()
536 if (epfd <= 0) in do_test()
538 if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev)) in do_test()
668 __epoll(epfd); in do_test()
H A Dreuseport_bpf.c217 int epfd, conn, i, sport, expected; in test_recv_order() local
220 epfd = epoll_create(1); in test_recv_order()
221 if (epfd < 0) in test_recv_order()
226 if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd[i], &ev)) in test_recv_order()
240 i = epoll_wait(epfd, &ev, 1, -1); in test_recv_order()
/linux-6.15/io_uring/
H A Depoll.c17 int epfd; member
36 epoll->epfd = READ_ONCE(sqe->fd); in io_epoll_ctl_prep()
57 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock); in io_epoll_ctl()
/linux-6.15/fs/
H A Deventpoll.c2315 CLASS(fd, f)(epfd); in do_epoll_ctl()
2453 SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd, in SYSCALL_DEFINE4() argument
2462 return do_epoll_ctl(epfd, op, fd, &epds, false); in SYSCALL_DEFINE4()
2517 CLASS(fd, f)(epfd); in do_epoll_wait()
2540 return do_epoll_wait(epfd, events, maxevents, in SYSCALL_DEFINE4()
2562 error = do_epoll_wait(epfd, events, maxevents, to); in do_epoll_pwait()
2575 return do_epoll_pwait(epfd, events, maxevents, in SYSCALL_DEFINE6()
2594 return do_epoll_pwait(epfd, events, maxevents, to, in SYSCALL_DEFINE6()
2621 COMPAT_SYSCALL_DEFINE6(epoll_pwait, int, epfd, in COMPAT_SYSCALL_DEFINE6() argument
2629 return do_compat_epoll_pwait(epfd, events, maxevents, in COMPAT_SYSCALL_DEFINE6()
[all …]
/linux-6.15/tools/testing/selftests/bpf/prog_tests/
H A Dselect_reuseport.c42 static int epfd; variable
398 nev = epoll_wait(epfd, &ev, 1, expected >= PASS ? 5 : 0); in do_test()
561 nev = epoll_wait(epfd, &ev, 1, 5); in test_detach_bpf()
646 epfd = epoll_create(1); in prepare_sk_fds()
647 RET_IF(epfd == -1, "epoll_create(1)", in prepare_sk_fds()
648 "epfd:%d errno:%d\n", epfd, errno); in prepare_sk_fds()
653 err = epoll_ctl(epfd, EPOLL_CTL_ADD, sk_fds[i], &ev); in prepare_sk_fds()
697 close(epfd); in cleanup_per_test()
/linux-6.15/include/linux/
H A Deventpoll.h60 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds,
H A Dcompat.h584 asmlinkage long compat_sys_epoll_pwait(int epfd,
589 asmlinkage long compat_sys_epoll_pwait2(int epfd,
H A Dsyscalls.h377 asmlinkage long sys_epoll_ctl(int epfd, int op, int fd,
379 asmlinkage long sys_epoll_pwait(int epfd, struct epoll_event __user *events,
383 asmlinkage long sys_epoll_pwait2(int epfd, struct epoll_event __user *events,
1094 asmlinkage long sys_epoll_wait(int epfd, struct epoll_event __user *events,
/linux-6.15/arch/arm/kernel/
H A Dsys_oabi-compat.c283 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd, in sys_oabi_epoll_ctl() argument
296 return do_epoll_ctl(epfd, op, fd, &kernel, false); in sys_oabi_epoll_ctl()
299 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd, in sys_oabi_epoll_ctl() argument
/linux-6.15/arch/arm/include/asm/
H A Dsyscalls.h28 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd,
/linux-6.15/tools/testing/selftests/filesystems/epoll/
H A Depoll_wakeup_test.c3163 int epfd; member
3194 ret = epoll_pwait(ctx->epfd, &e, 1, 2000, &sigmask); in epoll60_wait_thread()
3238 ctx.epfd = epoll_create1(0); in TEST()
3239 ASSERT_GE(ctx.epfd, 0); in TEST()
3297 close(ctx.epfd); in TEST()
3301 int epfd; member
3321 n = epoll_wait(ctx->epfd, events, 1, 11); in epoll61_epoll_with_timeout()
3339 epoll_wait(ctx->epfd, events, 1, -1); in epoll61_blocking_epoll()
3349 ctx.epfd = epoll_create1(0); in TEST()
3350 ASSERT_GE(ctx.epfd, 0); in TEST()
[all …]