From: Keith Busch Date: Tue, 26 Jun 2018 15:14:58 +0000 (-0600) Subject: block: Fix transfer when chunk sectors exceeds max X-Git-Tag: v4.14.53~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29413e068b2b4b81c0423066029025244f43d32d;p=platform%2Fkernel%2Flinux-exynos.git block: Fix transfer when chunk sectors exceeds max commit 15bfd21fbc5d35834b9ea383dc458a1f0c9e3434 upstream. A device may have boundary restrictions where the number of sectors between boundaries exceeds its max transfer size. In this case, we need to cap the max size to the smaller of the two limits. Reported-by: Jitendra Bhivare Tested-by: Jitendra Bhivare Cc: Reviewed-by: Martin K. Petersen Signed-off-by: Keith Busch Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 6362e36..4d4af0e 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -1088,8 +1088,8 @@ static inline unsigned int blk_max_size_offset(struct request_queue *q, if (!q->limits.chunk_sectors) return q->limits.max_sectors; - return q->limits.chunk_sectors - - (offset & (q->limits.chunk_sectors - 1)); + return min(q->limits.max_sectors, (unsigned int)(q->limits.chunk_sectors - + (offset & (q->limits.chunk_sectors - 1)))); } static inline unsigned int blk_rq_get_max_sectors(struct request *rq,