diff options
| author | Jens Axboe <axboe@fb.com> | 2014-05-30 23:20:50 -0400 |
|---|---|---|
| committer | Jens Axboe <axboe@fb.com> | 2014-05-30 23:20:50 -0400 |
| commit | ed851860b4552fc8963ecf71eab9f6f7a5c19d74 (patch) | |
| tree | d9fc4edbe2dd1400855705e8407cf0f87d2dc3ea /block | |
| parent | feff6894128e4bb3c903ce247edc5bd3a1b09fc9 (diff) | |
blk-mq: push IPI or local end_io decision to __blk_mq_complete_request()
We have callers outside of the blk-mq proper (like timeouts) that
want to call __blk_mq_complete_request(), so rename the function
and put the decision code for whether to use ->softirq_done_fn
or blk_mq_endio() into __blk_mq_complete_request().
This also makes the interface more logical again.
blk_mq_complete_request() attempts to atomically mark the request
completed, and calls __blk_mq_complete_request() if successful.
__blk_mq_complete_request() then just ends the request.
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
| -rw-r--r-- | block/blk-mq.c | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c index 5443aea36542..0f5879c42dcd 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c | |||
| @@ -359,7 +359,7 @@ static void __blk_mq_complete_request_remote(void *data) | |||
| 359 | rq->q->softirq_done_fn(rq); | 359 | rq->q->softirq_done_fn(rq); |
| 360 | } | 360 | } |
| 361 | 361 | ||
| 362 | void __blk_mq_complete_request(struct request *rq) | 362 | static void blk_mq_ipi_complete_request(struct request *rq) |
| 363 | { | 363 | { |
| 364 | struct blk_mq_ctx *ctx = rq->mq_ctx; | 364 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
| 365 | bool shared = false; | 365 | bool shared = false; |
| @@ -385,6 +385,16 @@ void __blk_mq_complete_request(struct request *rq) | |||
| 385 | put_cpu(); | 385 | put_cpu(); |
| 386 | } | 386 | } |
| 387 | 387 | ||
| 388 | void __blk_mq_complete_request(struct request *rq) | ||
| 389 | { | ||
| 390 | struct request_queue *q = rq->q; | ||
| 391 | |||
| 392 | if (!q->softirq_done_fn) | ||
| 393 | blk_mq_end_io(rq, rq->errors); | ||
| 394 | else | ||
| 395 | blk_mq_ipi_complete_request(rq); | ||
| 396 | } | ||
| 397 | |||
| 388 | /** | 398 | /** |
| 389 | * blk_mq_complete_request - end I/O on a request | 399 | * blk_mq_complete_request - end I/O on a request |
| 390 | * @rq: the request being processed | 400 | * @rq: the request being processed |
| @@ -399,12 +409,8 @@ void blk_mq_complete_request(struct request *rq) | |||
| 399 | 409 | ||
| 400 | if (unlikely(blk_should_fake_timeout(q))) | 410 | if (unlikely(blk_should_fake_timeout(q))) |
| 401 | return; | 411 | return; |
| 402 | if (!blk_mark_rq_complete(rq)) { | 412 | if (!blk_mark_rq_complete(rq)) |
| 403 | if (q->softirq_done_fn) | 413 | __blk_mq_complete_request(rq); |
| 404 | __blk_mq_complete_request(rq); | ||
| 405 | else | ||
| 406 | blk_mq_end_io(rq, rq->errors); | ||
| 407 | } | ||
| 408 | } | 414 | } |
| 409 | EXPORT_SYMBOL(blk_mq_complete_request); | 415 | EXPORT_SYMBOL(blk_mq_complete_request); |
| 410 | 416 | ||
