Konstantin Demin
8cbaf1dea2
3rd patchs (in alphabetical order): - bbr3 - ntsync5 - openwrt - pf-kernel - xanmod - zen no configuration changes for now
56 lines
1.7 KiB
Diff
56 lines
1.7 KiB
Diff
From 30cdb8d7d06f51bb86142c537ea05bd01c31bb40 Mon Sep 17 00:00:00 2001
|
|
From: Christian Loehle <christian.loehle@arm.com>
|
|
Date: Thu, 5 Sep 2024 10:26:45 +0100
|
|
Subject: io_uring: Do not set iowait before sleeping
|
|
|
|
Setting in_iowait was introduced in commit
|
|
8a796565cec3 ("io_uring: Use io_schedule* in cqring wait")
|
|
to tackle a perf regression that was caused by menu taking iowait into
|
|
account for synchronous IO and thus not selecting deeper states like in
|
|
the io_uring counterpart.
|
|
That behaviour is gone, so the workaround can be removed.
|
|
|
|
Signed-off-by: Christian Loehle <christian.loehle@arm.com>
|
|
---
|
|
io_uring/io_uring.c | 17 -----------------
|
|
1 file changed, 17 deletions(-)
|
|
|
|
--- a/io_uring/io_uring.c
|
|
+++ b/io_uring/io_uring.c
|
|
@@ -2359,15 +2359,6 @@ int io_run_task_work_sig(struct io_ring_
|
|
return 0;
|
|
}
|
|
|
|
-static bool current_pending_io(void)
|
|
-{
|
|
- struct io_uring_task *tctx = current->io_uring;
|
|
-
|
|
- if (!tctx)
|
|
- return false;
|
|
- return percpu_counter_read_positive(&tctx->inflight);
|
|
-}
|
|
-
|
|
/* when returns >0, the caller should retry */
|
|
static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
|
|
struct io_wait_queue *iowq)
|
|
@@ -2385,19 +2376,11 @@ static inline int io_cqring_wait_schedul
|
|
if (unlikely(io_should_wake(iowq)))
|
|
return 0;
|
|
|
|
- /*
|
|
- * Mark us as being in io_wait if we have pending requests, so cpufreq
|
|
- * can take into account that the task is waiting for IO - turns out
|
|
- * to be important for low QD IO.
|
|
- */
|
|
- if (current_pending_io())
|
|
- current->in_iowait = 1;
|
|
ret = 0;
|
|
if (iowq->timeout == KTIME_MAX)
|
|
schedule();
|
|
else if (!schedule_hrtimeout(&iowq->timeout, HRTIMER_MODE_ABS))
|
|
ret = -ETIME;
|
|
- current->in_iowait = 0;
|
|
return ret;
|
|
}
|
|
|