From: Stephen M. Cameron Date: Wed, 26 Oct 2011 21:20:53 +0000 (-0500) Subject: [SCSI] hpsa: set max sectors instead of taking the default X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c0d6a4d17b3848750b0285861b7a807811a0cfa6;p=mv-sheeva.git [SCSI] hpsa: set max sectors instead of taking the default Set the max hardware sectors in the SCSI host template to 8192 to allow for larger i/o's (8192 is the same limit the cciss driver currently has.) Signed-off-by: Stephen M. Cameron Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 9825ecf3495..43a882bc751 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -484,6 +484,7 @@ static struct scsi_host_template hpsa_driver_template = { #endif .sdev_attrs = hpsa_sdev_attrs, .shost_attrs = hpsa_shost_attrs, + .max_sectors = 8192, };