diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2009-06-03 12:55:23 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-06-08 15:46:50 -0400 |
commit | 81eb9b4985b9cf965f9c05f4679a77fae2a85fe5 (patch) | |
tree | d71d7d2c24f8d293091b22887c4bf942e8c05af8 /drivers/scsi/qla2xxx/qla_mbx.c | |
parent | 9f8fddeef2264a0315032b0aa2ee0052dad90076 (diff) |
[SCSI] qla2xxx: Add notification message when an NPIV fails to acquire a port-id.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_mbx.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_mbx.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c index b32eb69974a3..df919c072cae 100644 --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c | |||
@@ -2753,8 +2753,11 @@ qla24xx_report_id_acquisition(scsi_qla_host_t *vha, | |||
2753 | if (vp_idx == 0) | 2753 | if (vp_idx == 0) |
2754 | return; | 2754 | return; |
2755 | 2755 | ||
2756 | if (MSB(stat) == 1) | 2756 | if (MSB(stat) == 1) { |
2757 | DEBUG2(printk("scsi(%ld): Could not acquire ID for " | ||
2758 | "VP[%d].\n", vha->host_no, vp_idx)); | ||
2757 | return; | 2759 | return; |
2760 | } | ||
2758 | 2761 | ||
2759 | list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) | 2762 | list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) |
2760 | if (vp_idx == vp->vp_idx) | 2763 | if (vp_idx == vp->vp_idx) |