diff options
author | Jens Axboe <axboe@fb.com> | 2015-02-10 13:31:34 -0700 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-02-10 13:31:34 -0700 |
commit | 201f201c33220f53856fd300e1990b779538d67f (patch) | |
tree | d796313180ff50da6f8978a1f1d7fd63a101e072 /include | |
parent | db507b3ffd9b7a1c87e732ac6e2c3a5d0babb15a (diff) | |
download | op-kernel-dev-201f201c33220f53856fd300e1990b779538d67f.zip op-kernel-dev-201f201c33220f53856fd300e1990b779538d67f.tar.gz |
blk-mq: make blk_mq_run_queues() static
We no longer use it outside of blk-mq.c, so we can make it static
and stop exporting it. Additionally, kill the 'async' argument, as
there's only one used of it.
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/blk-mq.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index 86b08b1..ac6c7f5 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -175,7 +175,6 @@ void blk_mq_free_tag_set(struct blk_mq_tag_set *set); void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule); void blk_mq_insert_request(struct request *, bool, bool, bool); -void blk_mq_run_queues(struct request_queue *q, bool async); void blk_mq_free_request(struct request *rq); void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *, struct request *rq); bool blk_mq_can_queue(struct blk_mq_hw_ctx *); |