diff options
author | Swen Schillig <swen@vnet.ibm.com> | 2009-03-02 07:09:10 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-03-12 13:58:22 -0400 |
commit | 947a9aca86eb2a921ed7aa92397cf7f38b896f90 (patch) | |
tree | cfb2b6e86b77d7eeea5d73e86bc5f2905e919092 /drivers/s390/scsi | |
parent | 2cb5b2ca6dddcdfb0e220f18b4612890a23a1c92 (diff) |
[SCSI] zfcp: fix queue, scheduled work processing.
Ensure the refcounting is correct even if we were not able to
schedule a work. In addition we have to make sure no scheduled
work is pending while we're dequeing the adapter from the
systems environment.
Signed-off-by: Swen Schillig <swen@vnet.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/s390/scsi')
-rw-r--r-- | drivers/s390/scsi/zfcp_aux.c | 1 | ||||
-rw-r--r-- | drivers/s390/scsi/zfcp_erp.c | 10 |
2 files changed, 8 insertions, 3 deletions
diff --git a/drivers/s390/scsi/zfcp_aux.c b/drivers/s390/scsi/zfcp_aux.c index b2be6593b563..c4d07be6279a 100644 --- a/drivers/s390/scsi/zfcp_aux.c +++ b/drivers/s390/scsi/zfcp_aux.c | |||
@@ -554,6 +554,7 @@ void zfcp_adapter_dequeue(struct zfcp_adapter *adapter) | |||
554 | 554 | ||
555 | cancel_work_sync(&adapter->scan_work); | 555 | cancel_work_sync(&adapter->scan_work); |
556 | cancel_work_sync(&adapter->stat_work); | 556 | cancel_work_sync(&adapter->stat_work); |
557 | cancel_delayed_work_sync(&adapter->nsp.work); | ||
557 | zfcp_adapter_scsi_unregister(adapter); | 558 | zfcp_adapter_scsi_unregister(adapter); |
558 | sysfs_remove_group(&adapter->ccw_device->dev.kobj, | 559 | sysfs_remove_group(&adapter->ccw_device->dev.kobj, |
559 | &zfcp_sysfs_adapter_attrs); | 560 | &zfcp_sysfs_adapter_attrs); |
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) |