| 192 | } |
| 193 | |
| 194 | static int do_tee(struct io_uring *ring, int fd_in, int fd_out, |
| 195 | unsigned int len) |
| 196 | { |
| 197 | return do_splice_op(ring, fd_in, 0, fd_out, 0, len, IORING_OP_TEE); |
| 198 | } |
| 199 | |
| 200 | static void check_splice_support(struct io_uring *ring, struct test_ctx *ctx) |
| 201 | { |
no test coverage detected