aboutsummaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorLimingWu <19092205@suning.com>2019-12-05 20:18:18 +0800
committerJens Axboe <axboe@kernel.dk>2019-12-05 07:59:37 -0700
commit0b4295b5e2b9b42f3f3096496fe4775b656c9ba6 (patch)
treea34d59b75191aac77ac406e2baa138d337c2eee0 /fs/io_uring.c
parentio_uring: hook all linked requests via link_list (diff)
downloadlinux-dev-0b4295b5e2b9b42f3f3096496fe4775b656c9ba6.tar.xz
linux-dev-0b4295b5e2b9b42f3f3096496fe4775b656c9ba6.zip
io_uring: fix a typo in a comment
thatn -> than. Signed-off-by: Liming Wu <19092205@suning.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to '')
-rw-r--r--fs/io_uring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index c838705c9a5a..405be10da73d 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -145,7 +145,7 @@ struct io_rings {
/*
* Number of completion events lost because the queue was full;
* this should be avoided by the application by making sure
- * there are not more requests pending thatn there is space in
+ * there are not more requests pending than there is space in
* the completion queue.
*
* Written by the kernel, shouldn't be modified by the