projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
326a9e4
)
io_uring: optimise non-timeout waiting
author
Pavel Begunkov
<asml.silence@gmail.com>
Thu, 5 Jan 2023 11:22:28 +0000
(11:22 +0000)
committer
Jens Axboe
<axboe@kernel.dk>
Sun, 29 Jan 2023 22:17:40 +0000
(15:17 -0700)
Unlike the jiffy scheduling version, schedule_hrtimeout() jumps a few
functions before getting into schedule() even if there is no actual
timeout needed. Some tests showed that it takes up to 1% of CPU cycles.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link:
https://lore.kernel.org/r/89f880574eceee6f4899783377ead234df7b3d04.1672916894.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/io_uring.c
patch
|
blob
|
history
diff --git
a/io_uring/io_uring.c
b/io_uring/io_uring.c
index 2ec011f0ba7d11c1c89ecb1860932895f0651322..6229a49c0c33a1051ad5459c7440d969c167cc84 100644
(file)
--- a/
io_uring/io_uring.c
+++ b/
io_uring/io_uring.c
@@
-2479,7
+2479,9
@@
static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
return -EINTR;
if (unlikely(io_should_wake(iowq)))
return 0;
- if (!schedule_hrtimeout(timeout, HRTIMER_MODE_ABS))
+ if (*timeout == KTIME_MAX)
+ schedule();
+ else if (!schedule_hrtimeout(timeout, HRTIMER_MODE_ABS))
return -ETIME;
return 0;
}