Commit eb53a3ea authored by Martin Wilck's avatar Martin Wilck Committed by Martin K. Petersen

scsi: hpsa: limit transfer length to 1MB, not 512kB

e2c7b433 was supposed to limit transfer length to 1MB, but got the unit of
max_sectors wrong.

Fixes: e2c7b433 ("scsi: hpsa: limit transfer length to 1MB")
Signed-off-by: default avatarMartin Wilck <mwilck@suse.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 53e13ee0
......@@ -976,7 +976,7 @@ static struct scsi_host_template hpsa_driver_template = {
#endif
.sdev_attrs = hpsa_sdev_attrs,
.shost_attrs = hpsa_shost_attrs,
.max_sectors = 1024,
.max_sectors = 2048,
.no_write_same = 1,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment