diff options
Diffstat (limited to 'drivers/s390/scsi')
-rw-r--r-- | drivers/s390/scsi/zfcp_aux.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/s390/scsi/zfcp_aux.c b/drivers/s390/scsi/zfcp_aux.c index 52fc1d789066..6bb4d332b474 100644 --- a/drivers/s390/scsi/zfcp_aux.c +++ b/drivers/s390/scsi/zfcp_aux.c | |||
@@ -1753,7 +1753,10 @@ static void zfcp_ns_gid_pn_handler(unsigned long data) | |||
1753 | ct_iu_req = zfcp_sg_to_address(ct->req); | 1753 | ct_iu_req = zfcp_sg_to_address(ct->req); |
1754 | ct_iu_resp = zfcp_sg_to_address(ct->resp); | 1754 | ct_iu_resp = zfcp_sg_to_address(ct->resp); |
1755 | 1755 | ||
1756 | if ((ct->status != 0) || zfcp_check_ct_response(&ct_iu_resp->header)) { | 1756 | if (ct->status != 0) |
1757 | goto failed; | ||
1758 | |||
1759 | if (zfcp_check_ct_response(&ct_iu_resp->header)) { | ||
1757 | /* FIXME: do we need some specific erp entry points */ | 1760 | /* FIXME: do we need some specific erp entry points */ |
1758 | atomic_set_mask(ZFCP_STATUS_PORT_INVALID_WWPN, &port->status); | 1761 | atomic_set_mask(ZFCP_STATUS_PORT_INVALID_WWPN, &port->status); |
1759 | goto failed; | 1762 | goto failed; |