aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc/lpfc_init.c
diff options
context:
space:
mode:
authorJames Smart <james.smart@emulex.com>2009-12-21 17:02:28 -0500
committerJames Bottomley <James.Bottomley@suse.de>2010-01-04 12:39:44 -0500
commitdef9c7a994f194377a23e687e6fd39b46c3ce631 (patch)
tree1a4ce65eea8171901af3d3f3427ae3fc5836560d /drivers/scsi/lpfc/lpfc_init.c
parent1987807d4a7f52ca86034865283b207ab9be79c8 (diff)
[SCSI] lpfc 8.3.7: Fix hardware/SLI relates issues
Fix hardware/SLI relates issues: - Fix CNA uses more than one EQ when in INTx interrupt mode. - Fix driver tries to process failed read FCF record mailbox request. - Fix allocating single receive buffer breaks FCoE receive queue. - Support new read FCF record mailbox error case. Signed-off-by: James Smart <james.smart@emulex.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_init.c')
-rw-r--r--drivers/scsi/lpfc/lpfc_init.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
index d4da6bdd0e73..7083ef3b3878 100644
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -7507,6 +7507,9 @@ lpfc_pci_probe_one_s4(struct pci_dev *pdev, const struct pci_device_id *pid)
7507 error = -ENODEV; 7507 error = -ENODEV;
7508 goto out_free_sysfs_attr; 7508 goto out_free_sysfs_attr;
7509 } 7509 }
7510 /* Default to single FCP EQ for non-MSI-X */
7511 if (phba->intr_type != MSIX)
7512 phba->cfg_fcp_eq_count = 1;
7510 /* Set up SLI-4 HBA */ 7513 /* Set up SLI-4 HBA */
7511 if (lpfc_sli4_hba_setup(phba)) { 7514 if (lpfc_sli4_hba_setup(phba)) {
7512 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 7515 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,