diff options
author | andrew.vasquez@qlogic.com <andrew.vasquez@qlogic.com> | 2006-01-13 20:05:42 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2006-01-14 11:55:35 -0500 |
commit | bc8fb3cb9e208de0d69223f68058714b78f83833 (patch) | |
tree | 4f329bcac7b6d0312377074d98944bdc1c8a3628 /drivers | |
parent | 590f98e5e8d6502cc21fdcddc90a0cc09c1f770e (diff) |
[SCSI] qla2xxx: Correct execution-throttle setting for ISP24xx.
Similarly to other ISPs, set execution throttle to maximum
allowed value since 'throttling' is done on a per-lun basis
via queue-depth.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index b4fbef5bf409..8635bd1ae8a0 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -3407,6 +3407,8 @@ qla24xx_nvram_config(scsi_qla_host_t *ha) | |||
3407 | ha->node_name = icb->node_name; | 3407 | ha->node_name = icb->node_name; |
3408 | ha->port_name = icb->port_name; | 3408 | ha->port_name = icb->port_name; |
3409 | 3409 | ||
3410 | icb->execution_throttle = __constant_cpu_to_le16(0xFFFF); | ||
3411 | |||
3410 | ha->retry_count = le16_to_cpu(nv->login_retry_count); | 3412 | ha->retry_count = le16_to_cpu(nv->login_retry_count); |
3411 | 3413 | ||
3412 | /* Set minimum login_timeout to 4 seconds. */ | 3414 | /* Set minimum login_timeout to 4 seconds. */ |