qla4xxx: Initialize hardware queue for ISP40XX
Issue: System crash while target discovery for ISP40XX Root cause: Function qla4xxx_init_rings() is not called for ISP40XX Fix: Call function qla4xxx_init_rings() for ISP40XX from qla4xxx_start_firmware(). Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com> Reviewed-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
9c4f8d92c2
commit
aa6db9b9cd
|
@ -890,6 +890,8 @@ int qla4xxx_start_firmware(struct scsi_qla_host *ha)
|
|||
if (status == QLA_SUCCESS) {
|
||||
if (test_and_clear_bit(AF_GET_CRASH_RECORD, &ha->flags))
|
||||
qla4xxx_get_crash_record(ha);
|
||||
|
||||
qla4xxx_init_rings(ha);
|
||||
} else {
|
||||
DEBUG(printk("scsi%ld: %s: Firmware has NOT started\n",
|
||||
ha->host_no, __func__));
|
||||
|
|
Loading…
Reference in New Issue