aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_init.c
diff options
context:
space:
mode:
authorAndrew Vasquez <andrew.vasquez@qlogic.com>2010-05-28 18:08:16 -0400
committerJames Bottomley <James.Bottomley@suse.de>2010-07-27 13:01:19 -0400
commitd3fa9e7d270e3d9b3fda325cdcb2ea77a00ed876 (patch)
tree4ad1b3aa0c568bf4aa13c61e82532ac45d55a301 /drivers/scsi/qla2xxx/qla_init.c
parentb963752f47c54a29c11acee99e6c99b3c6bb35c5 (diff)
[SCSI] qla2xxx: Add portid to async-request messages.
This helps to correlate submission/completion messages during triaging. Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_init.c')
-rw-r--r--drivers/scsi/qla2xxx/qla_init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c
index f1db11a0d699..4bf973483818 100644
--- a/drivers/scsi/qla2xxx/qla_init.c
+++ b/drivers/scsi/qla2xxx/qla_init.c
@@ -131,8 +131,10 @@ qla2x00_async_iocb_timeout(srb_t *sp)
131 struct srb_ctx *ctx = sp->ctx; 131 struct srb_ctx *ctx = sp->ctx;
132 132
133 DEBUG2(printk(KERN_WARNING 133 DEBUG2(printk(KERN_WARNING
134 "scsi(%ld:%x): Async-%s timeout.\n", 134 "scsi(%ld:%x): Async-%s timeout - portid=%02x%02x%02x.\n",
135 fcport->vha->host_no, sp->handle, ctx->name)); 135 fcport->vha->host_no, sp->handle,
136 ctx->name, fcport->d_id.b.domain,
137 fcport->d_id.b.area, fcport->d_id.b.al_pa));
136 138
137 fcport->flags &= ~FCF_ASYNC_SENT; 139 fcport->flags &= ~FCF_ASYNC_SENT;
138 if (ctx->type == SRB_LOGIN_CMD) 140 if (ctx->type == SRB_LOGIN_CMD)