diff options
author | Shyam Sundar <shyam.sundar@qlogic.com> | 2008-10-24 18:13:46 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-11-05 12:41:49 -0500 |
commit | 680d7db88ace53c673e1c437c9b6abcc053e8d6f (patch) | |
tree | 03e2c4f62473d3025ca01508d06a655372ddda94 /drivers/scsi/qla2xxx/qla_init.c | |
parent | 737faece278ffec78612675bc378a4258d8293bb (diff) |
[SCSI] qla2xxx: Do not honour max_vports from firmware for 2G ISPs and below.
For 23XX ISPs, max_vports may return an invalid value.
Do not honour it.
Cc: Stable Tree <stable@kernel.org>
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_init.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index ecf91ad40272..4218f20f5ed5 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -964,7 +964,6 @@ qla2x00_setup_chip(scsi_qla_host_t *ha) | |||
964 | &ha->fw_minor_version, | 964 | &ha->fw_minor_version, |
965 | &ha->fw_subminor_version, | 965 | &ha->fw_subminor_version, |
966 | &ha->fw_attributes, &ha->fw_memory_size); | 966 | &ha->fw_attributes, &ha->fw_memory_size); |
967 | qla2x00_resize_request_q(ha); | ||
968 | ha->flags.npiv_supported = 0; | 967 | ha->flags.npiv_supported = 0; |
969 | if ((IS_QLA24XX(ha) || IS_QLA25XX(ha) || | 968 | if ((IS_QLA24XX(ha) || IS_QLA25XX(ha) || |
970 | IS_QLA84XX(ha)) && | 969 | IS_QLA84XX(ha)) && |
@@ -976,6 +975,7 @@ qla2x00_setup_chip(scsi_qla_host_t *ha) | |||
976 | ha->max_npiv_vports = | 975 | ha->max_npiv_vports = |
977 | MIN_MULTI_ID_FABRIC - 1; | 976 | MIN_MULTI_ID_FABRIC - 1; |
978 | } | 977 | } |
978 | qla2x00_resize_request_q(ha); | ||
979 | 979 | ||
980 | if (ql2xallocfwdump) | 980 | if (ql2xallocfwdump) |
981 | qla2x00_alloc_fw_dump(ha); | 981 | qla2x00_alloc_fw_dump(ha); |