aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Axboe <axboe@fb.com>2014-06-17 22:09:29 -0700
committerJens Axboe <axboe@fb.com>2014-06-17 22:12:02 -0700
commit736ed4de766d4f0e8e6142dd4f9d73ef61835ed9 (patch)
treeb9c3c80c88ef8c0242a44356301d50e16f071125
parentd891fa70876b37941a5c5bed813e73beb53ebcf7 (diff)
downloadlinux-736ed4de766d4f0e8e6142dd4f9d73ef61835ed9.tar.gz
block: blk_max_size_offset() should check ->max_sectors
Commit 762380ad9322 inadvertently changed a check for max_sectors to max_hw_sectors. Revert that part, so we still compare against max_sectors. Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r--include/linux/blkdev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 31e11051f1ba3..713f8b62b435e 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -920,7 +920,7 @@ static inline unsigned int blk_max_size_offset(struct request_queue *q,
sector_t offset)
{
if (!q->limits.chunk_sectors)
- return q->limits.max_hw_sectors;
+ return q->limits.max_sectors;
return q->limits.chunk_sectors -
(offset & (q->limits.chunk_sectors - 1));