aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaiyue Wang <[email protected]>2024-04-10 01:35:28 +0800
committerJens Axboe <[email protected]>2024-04-09 15:00:35 -0600
commitff81dade48608363136d52bb2493a6df76458b28 (patch)
treee3c8fece80d84e9b24ffda4fc38123b9f678f04a
parent4fe82aedeb8a8cb09bfa60f55ab57b5c10a74ac4 (diff)
io-uring: correct typo in comment for IOU_F_TWQ_LAZY_WAKE
The 'r' key is near to 't' key, that makes 'with' to be 'wirh' ? :) Signed-off-by: Haiyue Wang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--include/linux/io_uring_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/io_uring_types.h b/include/linux/io_uring_types.h
index 05df0e399d7c..ac333ea81d31 100644
--- a/include/linux/io_uring_types.h
+++ b/include/linux/io_uring_types.h
@@ -13,7 +13,7 @@ enum {
* A hint to not wake right away but delay until there are enough of
* tw's queued to match the number of CQEs the task is waiting for.
*
- * Must not be used wirh requests generating more than one CQE.
+ * Must not be used with requests generating more than one CQE.
* It's also ignored unless IORING_SETUP_DEFER_TASKRUN is set.
*/
IOU_F_TWQ_LAZY_WAKE = 1,