mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
[SCSI] qla4xxx: Added new function qla4_8xxx_get_minidump
Move minidump code from qla4_8xxx_device_bootstrap() to new function qla4_8xxx_get_minidump() to make code more modular. Signed-off-by: Lalit Chandivade <lalit.chandivade@qlogic.com> Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com> Reviewed-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
83dbdf6f52
commit
aec07caedb
@ -2283,6 +2283,20 @@ static void qla4_8xxx_uevent_emit(struct scsi_qla_host *ha, u32 code)
|
||||
kobject_uevent_env(&(&ha->pdev->dev)->kobj, KOBJ_CHANGE, envp);
|
||||
}
|
||||
|
||||
static void qla4_8xxx_get_minidump(struct scsi_qla_host *ha)
|
||||
{
|
||||
if (ql4xenablemd && test_bit(AF_FW_RECOVERY, &ha->flags) &&
|
||||
!test_bit(AF_82XX_FW_DUMPED, &ha->flags)) {
|
||||
if (!qla4_8xxx_collect_md_data(ha)) {
|
||||
qla4_8xxx_uevent_emit(ha, QL4_UEVENT_CODE_FW_DUMP);
|
||||
set_bit(AF_82XX_FW_DUMPED, &ha->flags);
|
||||
} else {
|
||||
ql4_printk(KERN_INFO, ha, "%s: Unable to collect minidump\n",
|
||||
__func__);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* qla4_8xxx_device_bootstrap - Initialize device, set DEV_READY, start fw
|
||||
* @ha: pointer to adapter structure
|
||||
@ -2338,15 +2352,7 @@ dev_initialize:
|
||||
QLA8XXX_DEV_INITIALIZING);
|
||||
|
||||
ha->isp_ops->idc_unlock(ha);
|
||||
if (ql4xenablemd && test_bit(AF_FW_RECOVERY, &ha->flags) &&
|
||||
!test_and_set_bit(AF_82XX_FW_DUMPED, &ha->flags)) {
|
||||
if (!qla4_8xxx_collect_md_data(ha)) {
|
||||
qla4_8xxx_uevent_emit(ha, QL4_UEVENT_CODE_FW_DUMP);
|
||||
} else {
|
||||
ql4_printk(KERN_INFO, ha, "Unable to collect minidump\n");
|
||||
clear_bit(AF_82XX_FW_DUMPED, &ha->flags);
|
||||
}
|
||||
}
|
||||
qla4_8xxx_get_minidump(ha);
|
||||
rval = ha->isp_ops->restart_firmware(ha);
|
||||
ha->isp_ops->idc_lock(ha);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user