Merge remote-tracking branch 'mkp-scsi/4.4/scsi-fixes' into fixes
This commit is contained in:
commit
f9ec0d559e
|
@ -2885,10 +2885,13 @@ static int sd_revalidate_disk(struct gendisk *disk)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Use the device's preferred I/O size for reads and writes
|
* Use the device's preferred I/O size for reads and writes
|
||||||
* unless the reported value is unreasonably large (or garbage).
|
* unless the reported value is unreasonably small, large, or
|
||||||
|
* garbage.
|
||||||
*/
|
*/
|
||||||
if (sdkp->opt_xfer_blocks && sdkp->opt_xfer_blocks <= dev_max &&
|
if (sdkp->opt_xfer_blocks &&
|
||||||
sdkp->opt_xfer_blocks <= SD_DEF_XFER_BLOCKS)
|
sdkp->opt_xfer_blocks <= dev_max &&
|
||||||
|
sdkp->opt_xfer_blocks <= SD_DEF_XFER_BLOCKS &&
|
||||||
|
sdkp->opt_xfer_blocks * sdp->sector_size >= PAGE_CACHE_SIZE)
|
||||||
rw_max = q->limits.io_opt =
|
rw_max = q->limits.io_opt =
|
||||||
logical_to_sectors(sdp, sdkp->opt_xfer_blocks);
|
logical_to_sectors(sdp, sdkp->opt_xfer_blocks);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue
Block a user