Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 181271
b: refs/heads/master
c: 90a86fc
h: refs/heads/master
i:
  181269: 31abc13
  181267: 79beacc
  181263: 8e138a3
v: v3
  • Loading branch information
Joe Carnuccio authored and James Bottomley committed Jan 18, 2010
1 parent 1d8086d commit 5e7ad19
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9db0fb3aa4cc4e42241e194ef64931321fa72196
refs/heads/master: 90a86fc05ffefe48581c88106d0b9cc37f6e060c
5 changes: 3 additions & 2 deletions trunk/drivers/scsi/qla2xxx/qla_isr.c
Original file line number Diff line number Diff line change
Expand Up @@ -2252,10 +2252,11 @@ qla2x00_free_irqs(scsi_qla_host_t *vha)

if (ha->flags.msix_enabled)
qla24xx_disable_msix(ha);
else if (ha->flags.inta_enabled) {
else if (ha->flags.msi_enabled) {
free_irq(ha->pdev->irq, rsp);
pci_disable_msi(ha->pdev);
}
} else
free_irq(ha->pdev->irq, rsp);
}


Expand Down
40 changes: 24 additions & 16 deletions trunk/drivers/scsi/qla2xxx/qla_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,6 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
/* Set EEH reset type to fundamental if required by hba */
if ( IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha)) {
pdev->needs_freset = 1;
pci_save_state(pdev);
}

/* Configure PCI I/O space */
Expand Down Expand Up @@ -1975,6 +1974,9 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
ret = qla2x00_request_irqs(ha, rsp);
if (ret)
goto probe_init_failed;

pci_save_state(pdev);

/* Alloc arrays of request and response ring ptrs */
que_init:
if (!qla2x00_alloc_queues(ha)) {
Expand Down Expand Up @@ -2176,6 +2178,8 @@ qla2x00_remove_one(struct pci_dev *pdev)
kfree(ha);
ha = NULL;

pci_disable_pcie_error_reporting(pdev);

pci_disable_device(pdev);
pci_set_drvdata(pdev, NULL);
}
Expand Down Expand Up @@ -3310,6 +3314,7 @@ qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
return PCI_ERS_RESULT_CAN_RECOVER;
case pci_channel_io_frozen:
ha->flags.eeh_busy = 1;
qla2x00_free_irqs(vha);
pci_disable_device(pdev);
return PCI_ERS_RESULT_NEED_RESET;
case pci_channel_io_perm_failure:
Expand Down Expand Up @@ -3363,10 +3368,19 @@ qla2xxx_pci_slot_reset(struct pci_dev *pdev)
pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
struct qla_hw_data *ha = base_vha->hw;
int rc;
struct rsp_que *rsp;
int rc, retries = 10;

DEBUG17(qla_printk(KERN_WARNING, ha, "slot_reset\n"));

/* Workaround: qla2xxx driver which access hardware earlier
* needs error state to be pci_channel_io_online.
* Otherwise mailbox command timesout.
*/
pdev->error_state = pci_channel_io_normal;

pci_restore_state(pdev);

if (ha->mem_only)
rc = pci_enable_device_mem(pdev);
else
Expand All @@ -3378,27 +3392,23 @@ qla2xxx_pci_slot_reset(struct pci_dev *pdev)
return ret;
}

rsp = ha->rsp_q_map[0];
if (qla2x00_request_irqs(ha, rsp))
return ret;

if (ha->isp_ops->pci_config(base_vha))
return ret;

#ifdef QL_DEBUG_LEVEL_17
{
uint8_t b;
uint32_t i;
while (ha->flags.mbox_busy && retries--)
msleep(1000);

printk("slot_reset_1: ");
for (i = 0; i < 256; i++) {
pci_read_config_byte(ha->pdev, i, &b);
printk("%s%02x", (i%16) ? " " : "\n", b);
}
printk("\n");
}
#endif
set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
if (qla2x00_abort_isp(base_vha) == QLA_SUCCESS)
ret = PCI_ERS_RESULT_RECOVERED;
clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);

pci_cleanup_aer_uncorrect_error_status(pdev);

DEBUG17(qla_printk(KERN_WARNING, ha,
"slot_reset-return:ret=%x\n", ret));

Expand All @@ -3422,8 +3432,6 @@ qla2xxx_pci_resume(struct pci_dev *pdev)
}

ha->flags.eeh_busy = 0;

pci_cleanup_aer_uncorrect_error_status(pdev);
}

static struct pci_error_handlers qla2xxx_err_handler = {
Expand Down

0 comments on commit 5e7ad19

Please sign in to comment.