diff options
author | Christoph Hellwig <hch@lst.de> | 2021-11-17 07:14:03 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-11-29 06:35:21 -0700 |
commit | 0d7a29a2b5eae30eff1e216badca76978a3de39f (patch) | |
tree | e23272711a88d0bfab838ba29bb507e34d6bbc87 /block/blk.h | |
parent | 22350ad7f15931b65d288e3e1462a51bfbfa5c4b (diff) | |
download | linux-rpi-0d7a29a2b5eae30eff1e216badca76978a3de39f.tar.gz linux-rpi-0d7a29a2b5eae30eff1e216badca76978a3de39f.tar.bz2 linux-rpi-0d7a29a2b5eae30eff1e216badca76978a3de39f.zip |
block: move blk_print_req_error to blk-mq.c
This function is only used by the request completion path. Factor out
a blk_status_to_str to keep blk_errors private in blk-core.c.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Link: https://lore.kernel.org/r/20211117061404.331732-11-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk.h')
-rw-r--r-- | block/blk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk.h b/block/blk.h index 50aae8c0e03c..31ac75413287 100644 --- a/block/blk.h +++ b/block/blk.h @@ -250,7 +250,7 @@ static inline void blk_integrity_del(struct gendisk *disk) unsigned long blk_rq_timeout(unsigned long timeout); void blk_add_timer(struct request *req); -void blk_print_req_error(struct request *req, blk_status_t status); +const char *blk_status_to_str(blk_status_t status); bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio, unsigned int nr_segs, bool *same_queue_rq); |