diff options
author | Jens Axboe <axboe@suse.de> | 2006-01-17 03:04:32 -0500 |
---|---|---|
committer | Jens Axboe <axboe@nelson.home.kernel.dk> | 2006-01-24 04:06:19 -0500 |
commit | 2cb2e147a6d20bffd1d6b7a79be7301560f751c3 (patch) | |
tree | 7b39f720574829823c9736f84bd51ae15acc330b /block | |
parent | 3ee68c4af3fd7228c1be63254b9f884614f9ebb2 (diff) |
[BLOCK] ll_rw_blk: make max_sectors and max_hw_sectors unsigned ints
IDE lba48 can support full 64k request size, which overflows the
max_hw_sectors variable.
Signed-off-by: Jens Axboe <axboe@suse.de>
Diffstat (limited to 'block')
-rw-r--r-- | block/ll_rw_blk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index 8e27d0ab0d7c..5c62507a510d 100644 --- a/block/ll_rw_blk.c +++ b/block/ll_rw_blk.c | |||
@@ -662,7 +662,7 @@ EXPORT_SYMBOL(blk_queue_bounce_limit); | |||
662 | * Enables a low level driver to set an upper limit on the size of | 662 | * Enables a low level driver to set an upper limit on the size of |
663 | * received requests. | 663 | * received requests. |
664 | **/ | 664 | **/ |
665 | void blk_queue_max_sectors(request_queue_t *q, unsigned short max_sectors) | 665 | void blk_queue_max_sectors(request_queue_t *q, unsigned int max_sectors) |
666 | { | 666 | { |
667 | if ((max_sectors << 9) < PAGE_CACHE_SIZE) { | 667 | if ((max_sectors << 9) < PAGE_CACHE_SIZE) { |
668 | max_sectors = 1 << (PAGE_CACHE_SHIFT - 9); | 668 | max_sectors = 1 << (PAGE_CACHE_SHIFT - 9); |