diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2011-10-26 17:20:53 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-10-30 06:09:24 -0400 |
commit | c0d6a4d17b3848750b0285861b7a807811a0cfa6 (patch) | |
tree | 402d6607e8e48f037e4a0891dbf2f881e60a3805 /drivers/scsi/hpsa.c | |
parent | d424754cbe97fe581985dca4400347cb275d7eb2 (diff) |
[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 <scameron@beardog.cce.hp.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/hpsa.c')
-rw-r--r-- | drivers/scsi/hpsa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 9825ecf34957..43a882bc751d 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c | |||
@@ -484,6 +484,7 @@ static struct scsi_host_template hpsa_driver_template = { | |||
484 | #endif | 484 | #endif |
485 | .sdev_attrs = hpsa_sdev_attrs, | 485 | .sdev_attrs = hpsa_sdev_attrs, |
486 | .shost_attrs = hpsa_shost_attrs, | 486 | .shost_attrs = hpsa_shost_attrs, |
487 | .max_sectors = 8192, | ||
487 | }; | 488 | }; |
488 | 489 | ||
489 | 490 | ||