diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2005-08-28 16:22:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-28 16:53:48 -0400 |
commit | 20b1730af3ae05450b0e03f5aed40c4313f65db6 (patch) | |
tree | 5b4508801e851a124f1fc1e08f8128969bb1a5d1 /drivers/s390/scsi/zfcp_aux.c | |
parent | 7f84f226389fc5f47b3cb36818972e2e171607de (diff) |
[PATCH] zfcp: bugfix and compile fixes
Bugfix (usage of uninitialized pointer in zfcp_port_dequeue) and compile
fixes for the zfcp device driver.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Acked-by: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/s390/scsi/zfcp_aux.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_aux.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/s390/scsi/zfcp_aux.c b/drivers/s390/scsi/zfcp_aux.c index 6fed4a532ca3..bfe3ba73bc0f 100644 --- a/drivers/s390/scsi/zfcp_aux.c +++ b/drivers/s390/scsi/zfcp_aux.c | |||
@@ -1403,15 +1403,14 @@ zfcp_port_enqueue(struct zfcp_adapter *adapter, wwn_t wwpn, u32 status, | |||
1403 | void | 1403 | void |
1404 | zfcp_port_dequeue(struct zfcp_port *port) | 1404 | zfcp_port_dequeue(struct zfcp_port *port) |
1405 | { | 1405 | { |
1406 | struct fc_port *rport; | ||
1407 | |||
1408 | zfcp_port_wait(port); | 1406 | zfcp_port_wait(port); |
1409 | write_lock_irq(&zfcp_data.config_lock); | 1407 | write_lock_irq(&zfcp_data.config_lock); |
1410 | list_del(&port->list); | 1408 | list_del(&port->list); |
1411 | port->adapter->ports--; | 1409 | port->adapter->ports--; |
1412 | write_unlock_irq(&zfcp_data.config_lock); | 1410 | write_unlock_irq(&zfcp_data.config_lock); |
1413 | if (port->rport) | 1411 | if (port->rport) |
1414 | fc_remote_port_delete(rport); | 1412 | fc_remote_port_delete(port->rport); |
1413 | port->rport = NULL; | ||
1415 | zfcp_adapter_put(port->adapter); | 1414 | zfcp_adapter_put(port->adapter); |
1416 | zfcp_sysfs_port_remove_files(&port->sysfs_device, | 1415 | zfcp_sysfs_port_remove_files(&port->sysfs_device, |
1417 | atomic_read(&port->status)); | 1416 | atomic_read(&port->status)); |