blk-mq: fix msec comment from micro to milli seconds

Delay to wait for queue running is milli second unit which is passed to
delayed work via msecs_to_jiffies() which is to convert milliseconds to
jiffies.

Signed-off-by: Minwoo Im <minwoo.im.dev@gmail.com>
Reviewed-by: John Garry <john.garry@huawei.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by Minwoo Im and committed by Jens Axboe fa94ba8a d220a214

+3 -3
+3 -3
block/blk-mq.c
··· 1594 1594 * __blk_mq_delay_run_hw_queue - Run (or schedule to run) a hardware queue. 1595 1595 * @hctx: Pointer to the hardware queue to run. 1596 1596 * @async: If we want to run the queue asynchronously. 1597 - * @msecs: Microseconds of delay to wait before running the queue. 1597 + * @msecs: Milliseconds of delay to wait before running the queue. 1598 1598 * 1599 1599 * If !@async, try to run the queue now. Else, run the queue asynchronously and 1600 1600 * with a delay of @msecs. ··· 1623 1623 /** 1624 1624 * blk_mq_delay_run_hw_queue - Run a hardware queue asynchronously. 1625 1625 * @hctx: Pointer to the hardware queue to run. 1626 - * @msecs: Microseconds of delay to wait before running the queue. 1626 + * @msecs: Milliseconds of delay to wait before running the queue. 1627 1627 * 1628 1628 * Run a hardware queue asynchronously with a delay of @msecs. 1629 1629 */ ··· 1687 1687 /** 1688 1688 * blk_mq_delay_run_hw_queues - Run all hardware queues asynchronously. 1689 1689 * @q: Pointer to the request queue to run. 1690 - * @msecs: Microseconds of delay to wait before running the queues. 1690 + * @msecs: Milliseconds of delay to wait before running the queues. 1691 1691 */ 1692 1692 void blk_mq_delay_run_hw_queues(struct request_queue *q, unsigned long msecs) 1693 1693 {