Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};