linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iocost: Fix check condition of iocg abs_vdebt
@ 2020-07-30  9:03 Chengming Zhou
  2020-07-30 14:14 ` Tejun Heo
  2020-07-30 17:46 ` Jens Axboe
  0 siblings, 2 replies; 3+ messages in thread
From: Chengming Zhou @ 2020-07-30  9:03 UTC (permalink / raw)
  To: tj, axboe, linux-block, linux-kernel; +Cc: zhouchengming

We shouldn't skip iocg when its abs_vdebt is not zero.

Fixes: 0b80f9866e6b ("iocost: protect iocg->abs_vdebt with
iocg->waitq.lock")

Signed-off-by: Chengming Zhou <zhouchengming@bytedance.com>
---
 block/blk-iocost.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/blk-iocost.c b/block/blk-iocost.c
index 8ac4aad66ebc..86ba6fd254e1 100644
--- a/block/blk-iocost.c
+++ b/block/blk-iocost.c
@@ -1370,7 +1370,7 @@ static void ioc_timer_fn(struct timer_list *timer)
 	 * should have woken up in the last period and expire idle iocgs.
 	 */
 	list_for_each_entry_safe(iocg, tiocg, &ioc->active_iocgs, active_list) {
-		if (!waitqueue_active(&iocg->waitq) && iocg->abs_vdebt &&
+		if (!waitqueue_active(&iocg->waitq) && !iocg->abs_vdebt &&
 		    !iocg_is_idle(iocg))
 			continue;
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-07-30 17:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-30  9:03 [PATCH] iocost: Fix check condition of iocg abs_vdebt Chengming Zhou
2020-07-30 14:14 ` Tejun Heo
2020-07-30 17:46 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).