diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-11-06 21:17:27 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-11-06 21:17:27 +0100 |
commit | 6dcabcd398946e2b0b776a8310291aeebe1ca0e6 (patch) | |
tree | 0698274339d0f2cbd3e25bfda91a35188c0bd252 | |
parent | selftests/net: don't tests batched TCP io_uring zc (diff) | |
download | linux-6dcabcd398946e2b0b776a8310291aeebe1ca0e6.tar.xz linux-6dcabcd398946e2b0b776a8310291aeebe1ca0e6.zip |
io_uring: fix typo in io_uring.h comment
Just a basic s/thig/this swap, fixing up a typo introduced by a commit
added in the 6.1 release.
Fixes: 9cda70f622cd ("io_uring: introduce fixed buffer support for io_uring_cmd")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | include/uapi/linux/io_uring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index ab7458033ee3..2df3225b562f 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -222,7 +222,7 @@ enum io_uring_op { /* * sqe->uring_cmd_flags - * IORING_URING_CMD_FIXED use registered buffer; pass thig flag + * IORING_URING_CMD_FIXED use registered buffer; pass this flag * along with setting sqe->buf_index. */ #define IORING_URING_CMD_FIXED (1U << 0) |