diff options
author | Christoph Hellwig <hch@lst.de> | 2021-10-18 10:45:18 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-10-19 05:54:57 -0600 |
commit | 8a7d267b4a2c71a5ff5dd9046abea7117c7d0ac2 (patch) | |
tree | 4f2844e6e5b09b6b29b1604701fbc967f4614b04 /block/blk-mq.c | |
parent | db9a02baa23267c695a44234a0f2f4607992780e (diff) |
block: don't call blk_status_to_errno in blk_update_request
We only need to call it to resolve the blk_status_t -> errno mapping for
tracing, so move the conversion into the tracepoints that are not called
at all when tracing isn't enabled.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-mq.c')
-rw-r--r-- | block/blk-mq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c index bbc61394eef3..59809ec24303 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -680,7 +680,7 @@ bool blk_update_request(struct request *req, blk_status_t error, { int total_bytes; - trace_block_rq_complete(req, blk_status_to_errno(error), nr_bytes); + trace_block_rq_complete(req, error, nr_bytes); if (!req->bio) return false; |