diff options
Diffstat (limited to 'drivers/s390/scsi/zfcp_erp.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_erp.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/s390/scsi/zfcp_erp.c b/drivers/s390/scsi/zfcp_erp.c index dee1cc3ce21b..631bdb1dfd6c 100644 --- a/drivers/s390/scsi/zfcp_erp.c +++ b/drivers/s390/scsi/zfcp_erp.c | |||
@@ -857,7 +857,7 @@ void zfcp_erp_port_strategy_open_lookup(struct work_struct *work) | |||
857 | port->erp_action.step = ZFCP_ERP_STEP_NAMESERVER_LOOKUP; | 857 | port->erp_action.step = ZFCP_ERP_STEP_NAMESERVER_LOOKUP; |
858 | if (retval) | 858 | if (retval) |
859 | zfcp_erp_notify(&port->erp_action, ZFCP_ERP_FAILED); | 859 | zfcp_erp_notify(&port->erp_action, ZFCP_ERP_FAILED); |
860 | 860 | zfcp_port_put(port); | |
861 | } | 861 | } |
862 | 862 | ||
863 | static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *act) | 863 | static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *act) |
@@ -873,7 +873,10 @@ static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *act) | |||
873 | if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP) | 873 | if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP) |
874 | return zfcp_erp_open_ptp_port(act); | 874 | return zfcp_erp_open_ptp_port(act); |
875 | if (!port->d_id) { | 875 | if (!port->d_id) { |
876 | queue_work(zfcp_data.work_queue, &port->gid_pn_work); | 876 | zfcp_port_get(port); |
877 | if (!queue_work(zfcp_data.work_queue, | ||
878 | &port->gid_pn_work)) | ||
879 | zfcp_port_put(port); | ||
877 | return ZFCP_ERP_CONTINUES; | 880 | return ZFCP_ERP_CONTINUES; |
878 | } | 881 | } |
879 | case ZFCP_ERP_STEP_NAMESERVER_LOOKUP: | 882 | case ZFCP_ERP_STEP_NAMESERVER_LOOKUP: |
@@ -1211,7 +1214,8 @@ static void zfcp_erp_schedule_work(struct zfcp_unit *unit) | |||
1211 | atomic_set_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING, &unit->status); | 1214 | atomic_set_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING, &unit->status); |
1212 | INIT_WORK(&p->work, zfcp_erp_scsi_scan); | 1215 | INIT_WORK(&p->work, zfcp_erp_scsi_scan); |
1213 | p->unit = unit; | 1216 | p->unit = unit; |
1214 | queue_work(zfcp_data.work_queue, &p->work); | 1217 | if (!queue_work(zfcp_data.work_queue, &p->work)) |
1218 | zfcp_unit_put(unit); | ||
1215 | } | 1219 | } |
1216 | 1220 | ||
1217 | static void zfcp_erp_action_cleanup(struct zfcp_erp_action *act, int result) | 1221 | static void zfcp_erp_action_cleanup(struct zfcp_erp_action *act, int result) |