diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-03-29 17:16:11 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-03-29 17:16:11 -0600 |
commit | 015be594f11dd8e86e5ade4e7c5426bbea70a56e (patch) | |
tree | d026907b342d54196d18f5524fc20a412fbc8d97 | |
parent | 000dd873f4da9b6052792c93d4d0978bb4ea3252 (diff) | |
download | liburing-015be594f11dd8e86e5ade4e7c5426bbea70a56e.tar.gz liburing-015be594f11dd8e86e5ade4e7c5426bbea70a56e.tar.bz2 |
man/io_uring.7: line breaks
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | man/io_uring.7 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/man/io_uring.7 b/man/io_uring.7 index 0a47831..39865e6 100644 --- a/man/io_uring.7 +++ b/man/io_uring.7 @@ -551,8 +551,8 @@ int io_uring_setup(unsigned entries, struct io_uring_params *p) int io_uring_enter(int ring_fd, unsigned int to_submit, unsigned int min_complete, unsigned int flags) { - return (int) syscall(__NR_io_uring_enter, ring_fd, to_submit, min_complete, - flags, NULL, 0); + return (int) syscall(__NR_io_uring_enter, ring_fd, to_submit, + min_complete, flags, NULL, 0); } int app_setup_uring(void) { @@ -696,10 +696,10 @@ int submit_to_sq(int fd, int op) { io_uring_smp_store_release(sring_tail, tail); /* - * Tell the kernel we have submitted events with the io_uring_enter() system - * call. We also pass in the IOURING_ENTER_GETEVENTS flag which causes the - * io_uring_enter() call to wait until min_complete (the 3rd param) events - * complete. + * Tell the kernel we have submitted events with the io_uring_enter() + * system call. We also pass in the IOURING_ENTER_GETEVENTS flag which + * causes the io_uring_enter() call to wait until min_complete + * (the 3rd param) events complete. * */ int ret = io_uring_enter(ring_fd, 1,1, IORING_ENTER_GETEVENTS); |