diff mbox series

block: improve the error message from bio_check_eod

Message ID 20220504143355.568660-1-hch@lst.de (mailing list archive)
State New, archived
Headers show
Series block: improve the error message from bio_check_eod | expand

Commit Message

Christoph Hellwig May 4, 2022, 2:33 p.m. UTC
Print the start sector and length separately instead of the combined
value to help with debugging.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 block/blk-core.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

Comments

Damien Le Moal May 4, 2022, 3:34 p.m. UTC | #1
On 2022/05/04 23:33, Christoph Hellwig wrote:
> Print the start sector and length separately instead of the combined
> value to help with debugging.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  block/blk-core.c | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/block/blk-core.c b/block/blk-core.c
> index 937bb6b863317..10b32a1cc42b7 100644
> --- a/block/blk-core.c
> +++ b/block/blk-core.c
> @@ -592,10 +592,9 @@ static inline int bio_check_eod(struct bio *bio)
>  	    (nr_sectors > maxsector ||
>  	     bio->bi_iter.bi_sector > maxsector - nr_sectors)) {
>  		pr_info_ratelimited("%s: attempt to access beyond end of device\n"
> -				    "%pg: rw=%d, want=%llu, limit=%llu\n",
> -				    current->comm,
> -				    bio->bi_bdev, bio->bi_opf,
> -				    bio_end_sector(bio), maxsector);
> +				    "%pg: rw=%d, sector=%llu, nr_sectors = %u limit=%llu\n",
> +				    current->comm, bio->bi_bdev, bio->bi_opf,
> +				    bio->bi_iter.bi_sector, nr_sectors, maxsector);
>  		return -EIO;
>  	}
>  	return 0;

Looks good.

Reviewed-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Jens Axboe May 5, 2022, 12:30 a.m. UTC | #2
On Wed, 4 May 2022 07:33:55 -0700, Christoph Hellwig wrote:
> Print the start sector and length separately instead of the combined
> value to help with debugging.
> 
> 

Applied, thanks!

[1/1] block: improve the error message from bio_check_eod
      commit: 069adbac2cd85ae00252da6c5576cbf9b9d9ba6e

Best regards,
diff mbox series

Patch

diff --git a/block/blk-core.c b/block/blk-core.c
index 937bb6b863317..10b32a1cc42b7 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -592,10 +592,9 @@  static inline int bio_check_eod(struct bio *bio)
 	    (nr_sectors > maxsector ||
 	     bio->bi_iter.bi_sector > maxsector - nr_sectors)) {
 		pr_info_ratelimited("%s: attempt to access beyond end of device\n"
-				    "%pg: rw=%d, want=%llu, limit=%llu\n",
-				    current->comm,
-				    bio->bi_bdev, bio->bi_opf,
-				    bio_end_sector(bio), maxsector);
+				    "%pg: rw=%d, sector=%llu, nr_sectors = %u limit=%llu\n",
+				    current->comm, bio->bi_bdev, bio->bi_opf,
+				    bio->bi_iter.bi_sector, nr_sectors, maxsector);
 		return -EIO;
 	}
 	return 0;