diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-02-13 16:23:57 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-02-13 16:23:57 -0700 |
commit | 99258660a4cdba9afce897d22ed7a6e3e2fac20c (patch) | |
tree | 70f79a05aae2cf61bc79035d318ac5e3043ce0aa | |
parent | 4095eaf5ff3dd08f2c8dd68b3368a6c50ff49d2d (diff) | |
download | liburing-99258660a4cdba9afce897d22ed7a6e3e2fac20c.tar.gz liburing-99258660a4cdba9afce897d22ed7a6e3e2fac20c.tar.bz2 |
man/io_uring_prep_{read,write}v2.3: formatting and style fixes
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | man/io_uring_prep_readv2.3 | 13 | ||||
-rw-r--r-- | man/io_uring_prep_writev2.3 | 12 |
2 files changed, 16 insertions, 9 deletions
diff --git a/man/io_uring_prep_readv2.3 b/man/io_uring_prep_readv2.3 index aaad25c..b05f36e 100644 --- a/man/io_uring_prep_readv2.3 +++ b/man/io_uring_prep_readv2.3 @@ -35,7 +35,9 @@ The behavior of the function can be controlled with the .I flags parameter. -Supported values for flags are: +Supported values for +.I flags +are: .TP .B RWF_HIPRI High priority request, poll if possible @@ -51,11 +53,12 @@ per-IO, return -EAGAIN if operation would block .TP .B RWF_APPEND per-IO O_APPEND -.TP -On files that support seeking, if the offset is set to -1, the read operation -commences at the file offset, and the file offset is incremented by the number -of bytes read. See +.P +On files that support seeking, if the offset is set to +.B -1, +the read operation commences at the file offset, and the file offset is +incremented by the number of bytes read. See .BR read (2) for more details. diff --git a/man/io_uring_prep_writev2.3 b/man/io_uring_prep_writev2.3 index 4f2ae47..4a994d0 100644 --- a/man/io_uring_prep_writev2.3 +++ b/man/io_uring_prep_writev2.3 @@ -34,7 +34,9 @@ The behavior of the function can be controlled with the .I flags parameter. -Supported values for flags are: +Supported values for +.I flags +are: .TP .B RWF_HIPRI High priority request, poll if possible @@ -51,9 +53,11 @@ per-IO, return -EAGAIN if operation would block .B RWF_APPEND per-IO O_APPEND -On files that support seeking, if the offset is set to -1, the write operation -commences at the file offset, and the file offset is incremented by the number -of bytes written. See +.P +On files that support seeking, if the offset is set to +.B -1, +the write operation commences at the file offset, and the file offset is +incremented by the number of bytes written. See .BR write (2) for more details. |