Commit d24de76a authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

block: remove the error argument to the block_bio_complete tracepoint

The status can be trivially derived from the bio itself.  That also avoid
callers like NVMe to incorrectly pass a blk_status_t instead of the errno,
and the overhead of translating the blk_status_t to the errno in the I/O
completion fast path when no tracing is enabled.

Fixes: 35fe0d12 ("nvme: trace bio completion")
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarSagi Grimberg <sagi@grimberg.me>
Reviewed-by: default avatarChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 6ac92fb5
...@@ -1434,8 +1434,7 @@ void bio_endio(struct bio *bio) ...@@ -1434,8 +1434,7 @@ void bio_endio(struct bio *bio)
} }
if (bio->bi_disk && bio_flagged(bio, BIO_TRACE_COMPLETION)) { if (bio->bi_disk && bio_flagged(bio, BIO_TRACE_COMPLETION)) {
trace_block_bio_complete(bio->bi_disk->queue, bio, trace_block_bio_complete(bio->bi_disk->queue, bio);
blk_status_to_errno(bio->bi_status));
bio_clear_flag(bio, BIO_TRACE_COMPLETION); bio_clear_flag(bio, BIO_TRACE_COMPLETION);
} }
......
...@@ -599,8 +599,7 @@ static inline void nvme_trace_bio_complete(struct request *req, ...@@ -599,8 +599,7 @@ static inline void nvme_trace_bio_complete(struct request *req,
struct nvme_ns *ns = req->q->queuedata; struct nvme_ns *ns = req->q->queuedata;
if (req->cmd_flags & REQ_NVME_MPATH) if (req->cmd_flags & REQ_NVME_MPATH)
trace_block_bio_complete(ns->head->disk->queue, trace_block_bio_complete(ns->head->disk->queue, req->bio);
req->bio, status);
} }
extern struct device_attribute dev_attr_ana_grpid; extern struct device_attribute dev_attr_ana_grpid;
......
...@@ -261,9 +261,9 @@ TRACE_EVENT(block_bio_bounce, ...@@ -261,9 +261,9 @@ TRACE_EVENT(block_bio_bounce,
*/ */
TRACE_EVENT(block_bio_complete, TRACE_EVENT(block_bio_complete,
TP_PROTO(struct request_queue *q, struct bio *bio, int error), TP_PROTO(struct request_queue *q, struct bio *bio),
TP_ARGS(q, bio, error), TP_ARGS(q, bio),
TP_STRUCT__entry( TP_STRUCT__entry(
__field( dev_t, dev ) __field( dev_t, dev )
...@@ -277,7 +277,7 @@ TRACE_EVENT(block_bio_complete, ...@@ -277,7 +277,7 @@ TRACE_EVENT(block_bio_complete,
__entry->dev = bio_dev(bio); __entry->dev = bio_dev(bio);
__entry->sector = bio->bi_iter.bi_sector; __entry->sector = bio->bi_iter.bi_sector;
__entry->nr_sector = bio_sectors(bio); __entry->nr_sector = bio_sectors(bio);
__entry->error = error; __entry->error = blk_status_to_errno(bio->bi_status);
blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size); blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
), ),
......
...@@ -885,10 +885,10 @@ static void blk_add_trace_bio_bounce(void *ignore, ...@@ -885,10 +885,10 @@ static void blk_add_trace_bio_bounce(void *ignore,
} }
static void blk_add_trace_bio_complete(void *ignore, static void blk_add_trace_bio_complete(void *ignore,
struct request_queue *q, struct bio *bio, struct request_queue *q, struct bio *bio)
int error)
{ {
blk_add_trace_bio(q, bio, BLK_TA_COMPLETE, error); blk_add_trace_bio(q, bio, BLK_TA_COMPLETE,
blk_status_to_errno(bio->bi_status));
} }
static void blk_add_trace_bio_backmerge(void *ignore, static void blk_add_trace_bio_backmerge(void *ignore,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment