block: remove 'q' parameter from kblockd_schedule_*_work()
The queue parameter is never used, just get rid of it.
Signed-off-by: Jens Axboe <axboe@fb.com>
diff --git a/block/blk-mq.c b/block/blk-mq.c
index 1d2a9bd..9c8f1f4 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -608,11 +608,8 @@
if (!async)
__blk_mq_run_hw_queue(hctx);
- else {
- struct request_queue *q = hctx->queue;
-
- kblockd_schedule_delayed_work(q, &hctx->delayed_work, 0);
- }
+ else
+ kblockd_schedule_delayed_work(&hctx->delayed_work, 0);
}
void blk_mq_run_queues(struct request_queue *q, bool async)