Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 2083
b: refs/heads/master
c: 66c8684
h: refs/heads/master
i:
  2081: b91ec7e
  2079: dc128a7
v: v3
  • Loading branch information
Andreas Herrmann authored and James Bottomley committed Jun 14, 2005
1 parent dec1f98 commit fdf3284
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d6cbbad7296538b6a38c0fe36e6ecf67f1e600a7
refs/heads/master: 66c8684abf80a9999392d639627afea80ac62e06
5 changes: 4 additions & 1 deletion trunk/drivers/s390/scsi/zfcp_aux.c
Original file line number Diff line number Diff line change
Expand Up @@ -1753,7 +1753,10 @@ static void zfcp_ns_gid_pn_handler(unsigned long data)
ct_iu_req = zfcp_sg_to_address(ct->req);
ct_iu_resp = zfcp_sg_to_address(ct->resp);

if ((ct->status != 0) || zfcp_check_ct_response(&ct_iu_resp->header)) {
if (ct->status != 0)
goto failed;

if (zfcp_check_ct_response(&ct_iu_resp->header)) {
/* FIXME: do we need some specific erp entry points */
atomic_set_mask(ZFCP_STATUS_PORT_INVALID_WWPN, &port->status);
goto failed;
Expand Down

0 comments on commit fdf3284

Please sign in to comment.