From: Chad Dupuis Date: Tue, 10 Apr 2012 11:42:19 +0000 (+0530) Subject: qla2xxx: Add new message when a new loopid is assigned. X-Git-Tag: v2.6.39-400.9.0~423^2~88 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7d69ebdbe06813b5d34304c2f91bd6e8ffaea92b;p=users%2Fjedix%2Flinux-maple.git qla2xxx: Add new message when a new loopid is assigned. JIRA Key: V2632FC-98 Signed-off-by: Saurav Kashyap --- diff --git a/drivers/scsi/qla2xxx/qla_dbg.c b/drivers/scsi/qla2xxx/qla_dbg.c index 7180c20daf67..9e6500f84ec6 100644 --- a/drivers/scsi/qla2xxx/qla_dbg.c +++ b/drivers/scsi/qla2xxx/qla_dbg.c @@ -12,8 +12,8 @@ * | Level | Last Value Used | Holes | * ---------------------------------------------------------------------- * | Module Init and Probe | 0x0120 | 0x4b,0xba,0xfa | - * | Mailbox commands | 0x113a | | - * | Device Discovery | 0x2085 | 0x2020-0x2022 | + * | Mailbox commands | 0x113e | | + * | Device Discovery | 0x2086 | 0x2020-0x2022 | * | Queue Command and IO tracing | 0x302f | 0x3006,0x3008 | * | | | 0x302d,0x302e | * | DPC Thread | 0x401c | | diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index f4c049381225..a3359290a9c3 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -3452,6 +3452,9 @@ qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev) /* If not in use then it is free to use. */ if (!found) { + ql_dbg(ql_dbg_disc, dev->vha, 0x2086, + "Assigning new loopid=%x, portid=%x.\n", + dev->loop_id, dev->d_id.b24); break; }