From: Vikas Chaudhary <[email protected]>

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 <[email protected]>
Signed-off-by: Vikas Chaudhary <[email protected]>
---
 drivers/scsi/qla4xxx/ql4_nx.c |   24 +++++++++++++++---------
 1 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/drivers/scsi/qla4xxx/ql4_nx.c b/drivers/scsi/qla4xxx/ql4_nx.c
index 70793bf..6daa25c 100644
--- a/drivers/scsi/qla4xxx/ql4_nx.c
+++ b/drivers/scsi/qla4xxx/ql4_nx.c
@@ -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);
 
-- 
1.7.8.GIT

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to