diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2010-05-28 15:08:16 -0700 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-07-27 12:01:19 -0500 |
commit | d3fa9e7d270e3d9b3fda325cdcb2ea77a00ed876 (patch) | |
tree | 4ad1b3aa0c568bf4aa13c61e82532ac45d55a301 /drivers/scsi/qla2xxx/qla_init.c | |
parent | b963752f47c54a29c11acee99e6c99b3c6bb35c5 (diff) | |
download | op-kernel-dev-d3fa9e7d270e3d9b3fda325cdcb2ea77a00ed876.zip op-kernel-dev-d3fa9e7d270e3d9b3fda325cdcb2ea77a00ed876.tar.gz |
[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.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index f1db11a..4bf9734 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) struct srb_ctx *ctx = sp->ctx; DEBUG2(printk(KERN_WARNING - "scsi(%ld:%x): Async-%s timeout.\n", - fcport->vha->host_no, sp->handle, ctx->name)); + "scsi(%ld:%x): Async-%s timeout - portid=%02x%02x%02x.\n", + fcport->vha->host_no, sp->handle, + ctx->name, fcport->d_id.b.domain, + fcport->d_id.b.area, fcport->d_id.b.al_pa)); fcport->flags &= ~FCF_ASYNC_SENT; if (ctx->type == SRB_LOGIN_CMD) |