summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorJens Axboe <axboe@fb.com>2016-12-15 14:27:46 -0700
committerJens Axboe <axboe@fb.com>2017-01-17 10:03:48 -0700
commit16a3c2a70cad5ccdc2dc0a4544bff82554807493 (patch)
treed9462aaf26a7f5a971b0a31d52a6c5ac7996215b /block
parentc23ecb426084a98418ee29124c139e37c274ad04 (diff)
downloadlinux-0-day-16a3c2a70cad5ccdc2dc0a4544bff82554807493.tar.gz
linux-0-day-16a3c2a70cad5ccdc2dc0a4544bff82554807493.tar.xz
blk-mq: un-export blk_mq_free_hctx_request()
It's only used in blk-mq, kill it from the main exported header and kill the symbol export as well. Signed-off-by: Jens Axboe <axboe@fb.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Omar Sandoval <osandov@fb.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-mq.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c
index 79e1cb0f7b152..f49f6325b332b 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -337,15 +337,14 @@ static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
blk_queue_exit(q);
}
-void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
+static void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx,
+ struct request *rq)
{
struct blk_mq_ctx *ctx = rq->mq_ctx;
ctx->rq_completed[rq_is_sync(rq)]++;
__blk_mq_free_request(hctx, ctx, rq);
-
}
-EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
void blk_mq_free_request(struct request *rq)
{