mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
[SCSI] mptsas : Change DEFINED value of can queue for FC and SAS devices.
Change DEFINED value of can queue for FC and SAS devices. Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
4dbfb544ad
commit
9d2e9d66a3
2 changed files with 3 additions and 2 deletions
|
@ -157,8 +157,9 @@
|
|||
/*
|
||||
* Try to keep these at 2^N-1
|
||||
*/
|
||||
#define MPT_FC_CAN_QUEUE 127
|
||||
#define MPT_FC_CAN_QUEUE 1024
|
||||
#define MPT_SCSI_CAN_QUEUE 127
|
||||
#define MPT_SAS_CAN_QUEUE 127
|
||||
|
||||
/*
|
||||
* Set the MAX_SGE value based on user input.
|
||||
|
|
|
@ -1891,7 +1891,7 @@ static struct scsi_host_template mptsas_driver_template = {
|
|||
.eh_bus_reset_handler = mptscsih_bus_reset,
|
||||
.eh_host_reset_handler = mptscsih_host_reset,
|
||||
.bios_param = mptscsih_bios_param,
|
||||
.can_queue = MPT_FC_CAN_QUEUE,
|
||||
.can_queue = MPT_SAS_CAN_QUEUE,
|
||||
.this_id = -1,
|
||||
.sg_tablesize = MPT_SCSI_SG_DEPTH,
|
||||
.max_sectors = 8192,
|
||||
|
|
Loading…
Reference in a new issue