| 183 | } |
| 184 | |
| 185 | static int do_splice(struct io_uring *ring, |
| 186 | int fd_in, loff_t off_in, |
| 187 | int fd_out, loff_t off_out, |
| 188 | unsigned int len) |
| 189 | { |
| 190 | return do_splice_op(ring, fd_in, off_in, fd_out, off_out, len, |
| 191 | IORING_OP_SPLICE); |
| 192 | } |
| 193 | |
| 194 | static int do_tee(struct io_uring *ring, int fd_in, int fd_out, |
| 195 | unsigned int len) |
no test coverage detected