diff mbox

blk-mq: remove confusing comment of blk_mq_sched_dispatch_requests

Message ID 20180105070906.29664-1-bo.li.liu@oracle.com (mailing list archive)
State New, archived
Headers show

Commit Message

Liu Bo Jan. 5, 2018, 7:09 a.m. UTC
Commit de1482974080
("blk-mq: introduce .get_budget and .put_budget in blk_mq_ops")
changes the function to return bool type, and then commit 1f460b63d4b3
("blk-mq: don't restart queue when .get_budget returns BLK_STS_RESOURCE")
changes it back to void, but the comment remains.

Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
---
 block/blk-mq-sched.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Jens Axboe Jan. 5, 2018, 3:36 p.m. UTC | #1
On 1/5/18 12:09 AM, Liu Bo wrote:
> Commit de1482974080
> ("blk-mq: introduce .get_budget and .put_budget in blk_mq_ops")
> changes the function to return bool type, and then commit 1f460b63d4b3
> ("blk-mq: don't restart queue when .get_budget returns BLK_STS_RESOURCE")
> changes it back to void, but the comment remains.

Thanks, applied.
diff mbox

Patch

diff --git a/block/blk-mq-sched.c b/block/blk-mq-sched.c
index c117bd8..2ff7cf0 100644
--- a/block/blk-mq-sched.c
+++ b/block/blk-mq-sched.c
@@ -172,7 +172,6 @@  static void blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx)
 	WRITE_ONCE(hctx->dispatch_from, ctx);
 }
 
-/* return true if hw queue need to be run again */
 void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
 {
 	struct request_queue *q = hctx->queue;