diff options
author | Arun Easi <arun.easi@qlogic.com> | 2012-02-09 14:15:50 -0500 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-02-19 09:23:14 -0500 |
commit | 557cf7857cbf396f899034f1a7a13e245ef7e914 (patch) | |
tree | 146a4c1b66c2fad8ba2f1d2f52f833f89965b733 /drivers | |
parent | 880fdedb3e7ae55a99b3b87a27c945ac948243f9 (diff) |
[SCSI] qla2xxx: Add new message when a new loopid is assigned.
Signed-off-by: Arun Easi <arun.easi@qlogic.com>
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_dbg.c | 2 | ||||
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_dbg.c b/drivers/scsi/qla2xxx/qla_dbg.c index e9153104afe1..c28309bc3daa 100644 --- a/drivers/scsi/qla2xxx/qla_dbg.c +++ b/drivers/scsi/qla2xxx/qla_dbg.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * | Module Init and Probe | 0x0120 | 0x4b,0xba,0xfa | | 14 | * | Module Init and Probe | 0x0120 | 0x4b,0xba,0xfa | |
15 | * | Mailbox commands | 0x113e | 0x112c-0x112e | | 15 | * | Mailbox commands | 0x113e | 0x112c-0x112e | |
16 | * | | | 0x113a | | 16 | * | | | 0x113a | |
17 | * | Device Discovery | 0x2085 | 0x2020-0x2022 | | 17 | * | Device Discovery | 0x2086 | 0x2020-0x2022 | |
18 | * | Queue Command and IO tracing | 0x302f | 0x3006,0x3008 | | 18 | * | Queue Command and IO tracing | 0x302f | 0x3006,0x3008 | |
19 | * | | | 0x302d-0x302e | | 19 | * | | | 0x302d-0x302e | |
20 | * | DPC Thread | 0x401c | | | 20 | * | DPC Thread | 0x401c | | |
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index abd095c400d8..b28eb40d8adf 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -3421,6 +3421,9 @@ qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev) | |||
3421 | 3421 | ||
3422 | /* If not in use then it is free to use. */ | 3422 | /* If not in use then it is free to use. */ |
3423 | if (!found) { | 3423 | if (!found) { |
3424 | ql_dbg(ql_dbg_disc, dev->vha, 0x2086, | ||
3425 | "Assigning new loopid=%x, portid=%x.\n", | ||
3426 | dev->loop_id, dev->d_id.b24); | ||
3424 | break; | 3427 | break; |
3425 | } | 3428 | } |
3426 | 3429 | ||