Searched refs:fds (Results 1 – 1 of 1) sorted by relevance
/samples/bpf/ |
D | xdpsock_user.c | 487 struct pollfd *fds) in complete_tx_l2fwd() argument 514 ret = poll(fds, num_socks, opt_timeout); in complete_tx_l2fwd() 548 static void rx_drop(struct xsk_socket_info *xsk, struct pollfd *fds) in rx_drop() argument 557 ret = poll(fds, num_socks, opt_timeout); in rx_drop() 566 ret = poll(fds, num_socks, opt_timeout); in rx_drop() 589 struct pollfd fds[MAX_SOCKS + 1]; in rx_drop_all() local 592 memset(fds, 0, sizeof(fds)); in rx_drop_all() 595 fds[i].fd = xsk_socket__fd(xsks[i]->xsk); in rx_drop_all() 596 fds[i].events = POLLIN; in rx_drop_all() 601 ret = poll(fds, num_socks, opt_timeout); in rx_drop_all() [all …]
|