Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 161147
b: refs/heads/master
c: cdbe6df
h: refs/heads/master
i:
  161145: 28b9bd4
  161143: aa83828
v: v3
  • Loading branch information
Joe Eykholt authored and James Bottomley committed Sep 10, 2009
1 parent e22d02f commit 4f2d332
Show file tree
Hide file tree
Showing 2 changed files with 3 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: b84c7962653e4d04065d2603f0e1424ee0f455ae
refs/heads/master: cdbe6dfece038e75214735d56cd06319b9a6df46
3 changes: 2 additions & 1 deletion trunk/drivers/scsi/libfc/fc_rport.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,8 @@ static void fc_rport_timeout(struct work_struct *work)
static void fc_rport_error(struct fc_rport_priv *rdata, struct fc_frame *fp)
{
FC_RPORT_DBG(rdata, "Error %ld in state %s, retries %d\n",
PTR_ERR(fp), fc_rport_state(rdata), rdata->retries);
IS_ERR(fp) ? -PTR_ERR(fp) : 0,
fc_rport_state(rdata), rdata->retries);

switch (rdata->rp_state) {
case RPORT_ST_PLOGI:
Expand Down

0 comments on commit 4f2d332

Please sign in to comment.