linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] block-mq: set both block queue and hardware queue restart bit for restart
@ 2017-04-06  0:16 Long Li
  2017-04-06  0:32 ` Bart Van Assche
  0 siblings, 1 reply; 10+ messages in thread
From: Long Li @ 2017-04-06  0:16 UTC (permalink / raw)
  To: Jens Axboe, linux-block, linux-kernel
  Cc: K. Y. Srinivasan, Stephen Hemminger, Long Li

From: Long Li <longli@microsoft.com>

Under heavy I/O, one hardware queue may be unable to dispatch any I/O to the 
device layer. This poses a problem with restarting this hardware queue on I/O
finish in blk_mq_sched_restart_queues(), becaue there is nothing pending that
will finish in future on this hardware qeueu. This will result in deadlock.

With this patch, we check for all possible stalled hardware queues when I/O
finishes on any hardware queues. This prevents this deadlock.

Signed-off-by: Long Li <longli@microsoft.com>
---
 block/blk-mq-sched.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/blk-mq-sched.c b/block/blk-mq-sched.c
index 09af8ff..f7f3d44 100644
--- a/block/blk-mq-sched.c
+++ b/block/blk-mq-sched.c
@@ -202,7 +202,7 @@ void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
 	 * needing a restart in that case.
 	 */
 	if (!list_empty(&rq_list)) {
-		blk_mq_sched_mark_restart_hctx(hctx);
+		blk_mq_sched_mark_restart_queue(hctx);
 		did_work = blk_mq_dispatch_rq_list(hctx, &rq_list);
 	} else if (!has_sched_dispatch) {
 		blk_mq_flush_busy_ctxs(hctx, &rq_list);
-- 
2.7.4

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

end of thread, other threads:[~2017-05-05 19:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-06  0:16 [PATCH] block-mq: set both block queue and hardware queue restart bit for restart Long Li
2017-04-06  0:32 ` Bart Van Assche
2017-04-06  3:38   ` Long Li
2017-04-06  3:45     ` Bart Van Assche
2017-04-06  4:21       ` KY Srinivasan
2017-04-06  5:38         ` Long Li
2017-04-10 23:47         ` Bart Van Assche
2017-04-13 23:12           ` Long Li
2017-05-05  8:58             ` Long Li
2017-05-05 19:52               ` Bart Van Assche

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).