diff options
author | Chris Leech <christopher.leech@intel.com> | 2010-04-09 17:23:10 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-04-11 15:02:41 -0400 |
commit | ce8b5df04292e93a117d9f863af206245bf61271 (patch) | |
tree | fb10dd4b931756765b3352402d83033a326b9c30 /drivers/scsi/libfc | |
parent | 63ac4bbffb40f2cb3bc7e8b11bac47598813ea13 (diff) |
[SCSI] libfc: set both precision and field with when printing FC IDs
Most of the prints of fabric IDs were specified as %6x, which will not
print any leading 0s. It's nice to see leading 0s for identifiers
like this, which are a fixed length. This patch sets the precision
modifier as well, making the specifier %6.6x, which forces the
printing of leading 0s.
Signed-off-by: Chris Leech <christopher.leech@intel.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/libfc')
-rw-r--r-- | drivers/scsi/libfc/fc_disc.c | 6 | ||||
-rw-r--r-- | drivers/scsi/libfc/fc_fcp.c | 16 | ||||
-rw-r--r-- | drivers/scsi/libfc/fc_libfc.h | 6 | ||||
-rw-r--r-- | drivers/scsi/libfc/fc_lport.c | 14 |
4 files changed, 21 insertions, 21 deletions
diff --git a/drivers/scsi/libfc/fc_disc.c b/drivers/scsi/libfc/fc_disc.c index 1087a7f18e84..83314a18db2b 100644 --- a/drivers/scsi/libfc/fc_disc.c +++ b/drivers/scsi/libfc/fc_disc.c | |||
@@ -132,7 +132,7 @@ static void fc_disc_recv_rscn_req(struct fc_seq *sp, struct fc_frame *fp, | |||
132 | switch (fmt) { | 132 | switch (fmt) { |
133 | case ELS_ADDR_FMT_PORT: | 133 | case ELS_ADDR_FMT_PORT: |
134 | FC_DISC_DBG(disc, "Port address format for port " | 134 | FC_DISC_DBG(disc, "Port address format for port " |
135 | "(%6x)\n", ntoh24(pp->rscn_fid)); | 135 | "(%6.6x)\n", ntoh24(pp->rscn_fid)); |
136 | dp = kzalloc(sizeof(*dp), GFP_KERNEL); | 136 | dp = kzalloc(sizeof(*dp), GFP_KERNEL); |
137 | if (!dp) { | 137 | if (!dp) { |
138 | redisc = 1; | 138 | redisc = 1; |
@@ -449,7 +449,7 @@ static int fc_disc_gpn_ft_parse(struct fc_disc *disc, void *buf, size_t len) | |||
449 | } else { | 449 | } else { |
450 | printk(KERN_WARNING "libfc: Failed to allocate " | 450 | printk(KERN_WARNING "libfc: Failed to allocate " |
451 | "memory for the newly discovered port " | 451 | "memory for the newly discovered port " |
452 | "(%6x)\n", ids.port_id); | 452 | "(%6.6x)\n", ids.port_id); |
453 | error = -ENOMEM; | 453 | error = -ENOMEM; |
454 | } | 454 | } |
455 | } | 455 | } |
@@ -607,7 +607,7 @@ static void fc_disc_gpn_id_resp(struct fc_seq *sp, struct fc_frame *fp, | |||
607 | rdata->ids.port_name = port_name; | 607 | rdata->ids.port_name = port_name; |
608 | else if (rdata->ids.port_name != port_name) { | 608 | else if (rdata->ids.port_name != port_name) { |
609 | FC_DISC_DBG(disc, "GPN_ID accepted. WWPN changed. " | 609 | FC_DISC_DBG(disc, "GPN_ID accepted. WWPN changed. " |
610 | "Port-id %x wwpn %llx\n", | 610 | "Port-id %6.6x wwpn %llx\n", |
611 | rdata->ids.port_id, port_name); | 611 | rdata->ids.port_id, port_name); |
612 | lport->tt.rport_logoff(rdata); | 612 | lport->tt.rport_logoff(rdata); |
613 | 613 | ||
diff --git a/drivers/scsi/libfc/fc_fcp.c b/drivers/scsi/libfc/fc_fcp.c index f99d66fa2ef5..81a7c976b373 100644 --- a/drivers/scsi/libfc/fc_fcp.c +++ b/drivers/scsi/libfc/fc_fcp.c | |||
@@ -489,7 +489,7 @@ crc_err: | |||
489 | /* per cpu count, not total count, but OK for limit */ | 489 | /* per cpu count, not total count, but OK for limit */ |
490 | if (stats->InvalidCRCCount++ < 5) | 490 | if (stats->InvalidCRCCount++ < 5) |
491 | printk(KERN_WARNING "libfc: CRC error on data " | 491 | printk(KERN_WARNING "libfc: CRC error on data " |
492 | "frame for port (%6x)\n", | 492 | "frame for port (%6.6x)\n", |
493 | fc_host_port_id(lport->host)); | 493 | fc_host_port_id(lport->host)); |
494 | put_cpu(); | 494 | put_cpu(); |
495 | /* | 495 | /* |
@@ -894,7 +894,7 @@ static void fc_fcp_resp(struct fc_fcp_pkt *fsp, struct fc_frame *fp) | |||
894 | return; | 894 | return; |
895 | } | 895 | } |
896 | fsp->status_code = FC_DATA_OVRRUN; | 896 | fsp->status_code = FC_DATA_OVRRUN; |
897 | FC_FCP_DBG(fsp, "tgt %6x xfer len %zx greater than expected, " | 897 | FC_FCP_DBG(fsp, "tgt %6.6x xfer len %zx greater than expected, " |
898 | "len %x, data len %x\n", | 898 | "len %x, data len %x\n", |
899 | fsp->rport->port_id, | 899 | fsp->rport->port_id, |
900 | fsp->xfer_len, expected_len, fsp->data_len); | 900 | fsp->xfer_len, expected_len, fsp->data_len); |
@@ -1562,7 +1562,7 @@ static void fc_fcp_rec_error(struct fc_fcp_pkt *fsp, struct fc_frame *fp) | |||
1562 | break; | 1562 | break; |
1563 | 1563 | ||
1564 | default: | 1564 | default: |
1565 | FC_FCP_DBG(fsp, "REC %p fid %x error unexpected error %d\n", | 1565 | FC_FCP_DBG(fsp, "REC %p fid %6.6x error unexpected error %d\n", |
1566 | fsp, fsp->rport->port_id, error); | 1566 | fsp, fsp->rport->port_id, error); |
1567 | fsp->status_code = FC_CMD_PLOGO; | 1567 | fsp->status_code = FC_CMD_PLOGO; |
1568 | /* fall through */ | 1568 | /* fall through */ |
@@ -1572,7 +1572,7 @@ static void fc_fcp_rec_error(struct fc_fcp_pkt *fsp, struct fc_frame *fp) | |||
1572 | * Assume REC or LS_ACC was lost. | 1572 | * Assume REC or LS_ACC was lost. |
1573 | * The exchange manager will have aborted REC, so retry. | 1573 | * The exchange manager will have aborted REC, so retry. |
1574 | */ | 1574 | */ |
1575 | FC_FCP_DBG(fsp, "REC fid %x error error %d retry %d/%d\n", | 1575 | FC_FCP_DBG(fsp, "REC fid %6.6x error error %d retry %d/%d\n", |
1576 | fsp->rport->port_id, error, fsp->recov_retry, | 1576 | fsp->rport->port_id, error, fsp->recov_retry, |
1577 | FC_MAX_RECOV_RETRY); | 1577 | FC_MAX_RECOV_RETRY); |
1578 | if (fsp->recov_retry++ < FC_MAX_RECOV_RETRY) | 1578 | if (fsp->recov_retry++ < FC_MAX_RECOV_RETRY) |
@@ -2053,7 +2053,7 @@ int fc_eh_device_reset(struct scsi_cmnd *sc_cmd) | |||
2053 | if (lport->state != LPORT_ST_READY) | 2053 | if (lport->state != LPORT_ST_READY) |
2054 | return rc; | 2054 | return rc; |
2055 | 2055 | ||
2056 | FC_SCSI_DBG(lport, "Resetting rport (%6x)\n", rport->port_id); | 2056 | FC_SCSI_DBG(lport, "Resetting rport (%6.6x)\n", rport->port_id); |
2057 | 2057 | ||
2058 | fsp = fc_fcp_pkt_alloc(lport, GFP_NOIO); | 2058 | fsp = fc_fcp_pkt_alloc(lport, GFP_NOIO); |
2059 | if (fsp == NULL) { | 2059 | if (fsp == NULL) { |
@@ -2101,11 +2101,11 @@ int fc_eh_host_reset(struct scsi_cmnd *sc_cmd) | |||
2101 | 2101 | ||
2102 | if (fc_fcp_lport_queue_ready(lport)) { | 2102 | if (fc_fcp_lport_queue_ready(lport)) { |
2103 | shost_printk(KERN_INFO, shost, "libfc: Host reset succeeded " | 2103 | shost_printk(KERN_INFO, shost, "libfc: Host reset succeeded " |
2104 | "on port (%6x)\n", fc_host_port_id(lport->host)); | 2104 | "on port (%6.6x)\n", fc_host_port_id(lport->host)); |
2105 | return SUCCESS; | 2105 | return SUCCESS; |
2106 | } else { | 2106 | } else { |
2107 | shost_printk(KERN_INFO, shost, "libfc: Host reset failed, " | 2107 | shost_printk(KERN_INFO, shost, "libfc: Host reset failed, " |
2108 | "port (%6x) is not ready.\n", | 2108 | "port (%6.6x) is not ready.\n", |
2109 | fc_host_port_id(lport->host)); | 2109 | fc_host_port_id(lport->host)); |
2110 | return FAILED; | 2110 | return FAILED; |
2111 | } | 2111 | } |
@@ -2191,7 +2191,7 @@ void fc_fcp_destroy(struct fc_lport *lport) | |||
2191 | 2191 | ||
2192 | if (!list_empty(&si->scsi_pkt_queue)) | 2192 | if (!list_empty(&si->scsi_pkt_queue)) |
2193 | printk(KERN_ERR "libfc: Leaked SCSI packets when destroying " | 2193 | printk(KERN_ERR "libfc: Leaked SCSI packets when destroying " |
2194 | "port (%6x)\n", fc_host_port_id(lport->host)); | 2194 | "port (%6.6x)\n", fc_host_port_id(lport->host)); |
2195 | 2195 | ||
2196 | mempool_destroy(si->scsi_pkt_pool); | 2196 | mempool_destroy(si->scsi_pkt_pool); |
2197 | kfree(si); | 2197 | kfree(si); |
diff --git a/drivers/scsi/libfc/fc_libfc.h b/drivers/scsi/libfc/fc_libfc.h index 741fd5c72e13..efc6b3fe6f35 100644 --- a/drivers/scsi/libfc/fc_libfc.h +++ b/drivers/scsi/libfc/fc_libfc.h | |||
@@ -45,7 +45,7 @@ extern unsigned int fc_debug_logging; | |||
45 | 45 | ||
46 | #define FC_LPORT_DBG(lport, fmt, args...) \ | 46 | #define FC_LPORT_DBG(lport, fmt, args...) \ |
47 | FC_CHECK_LOGGING(FC_LPORT_LOGGING, \ | 47 | FC_CHECK_LOGGING(FC_LPORT_LOGGING, \ |
48 | printk(KERN_INFO "host%u: lport %6x: " fmt, \ | 48 | printk(KERN_INFO "host%u: lport %6.6x: " fmt, \ |
49 | (lport)->host->host_no, \ | 49 | (lport)->host->host_no, \ |
50 | fc_host_port_id((lport)->host), ##args)) | 50 | fc_host_port_id((lport)->host), ##args)) |
51 | 51 | ||
@@ -57,7 +57,7 @@ extern unsigned int fc_debug_logging; | |||
57 | 57 | ||
58 | #define FC_RPORT_ID_DBG(lport, port_id, fmt, args...) \ | 58 | #define FC_RPORT_ID_DBG(lport, port_id, fmt, args...) \ |
59 | FC_CHECK_LOGGING(FC_RPORT_LOGGING, \ | 59 | FC_CHECK_LOGGING(FC_RPORT_LOGGING, \ |
60 | printk(KERN_INFO "host%u: rport %6x: " fmt, \ | 60 | printk(KERN_INFO "host%u: rport %6.6x: " fmt, \ |
61 | (lport)->host->host_no, \ | 61 | (lport)->host->host_no, \ |
62 | (port_id), ##args)) | 62 | (port_id), ##args)) |
63 | 63 | ||
@@ -66,7 +66,7 @@ extern unsigned int fc_debug_logging; | |||
66 | 66 | ||
67 | #define FC_FCP_DBG(pkt, fmt, args...) \ | 67 | #define FC_FCP_DBG(pkt, fmt, args...) \ |
68 | FC_CHECK_LOGGING(FC_FCP_LOGGING, \ | 68 | FC_CHECK_LOGGING(FC_FCP_LOGGING, \ |
69 | printk(KERN_INFO "host%u: fcp: %6x: " fmt, \ | 69 | printk(KERN_INFO "host%u: fcp: %6.6x: " fmt, \ |
70 | (pkt)->lp->host->host_no, \ | 70 | (pkt)->lp->host->host_no, \ |
71 | pkt->rport->port_id, ##args)) | 71 | pkt->rport->port_id, ##args)) |
72 | 72 | ||
diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c index a6cf94d44ef8..e89bdd53acf0 100644 --- a/drivers/scsi/libfc/fc_lport.c +++ b/drivers/scsi/libfc/fc_lport.c | |||
@@ -172,7 +172,7 @@ static void fc_lport_rport_callback(struct fc_lport *lport, | |||
172 | struct fc_rport_priv *rdata, | 172 | struct fc_rport_priv *rdata, |
173 | enum fc_rport_event event) | 173 | enum fc_rport_event event) |
174 | { | 174 | { |
175 | FC_LPORT_DBG(lport, "Received a %d event for port (%6x)\n", event, | 175 | FC_LPORT_DBG(lport, "Received a %d event for port (%6.6x)\n", event, |
176 | rdata->ids.port_id); | 176 | rdata->ids.port_id); |
177 | 177 | ||
178 | mutex_lock(&lport->lp_mutex); | 178 | mutex_lock(&lport->lp_mutex); |
@@ -183,7 +183,7 @@ static void fc_lport_rport_callback(struct fc_lport *lport, | |||
183 | fc_lport_enter_ns(lport, LPORT_ST_RNN_ID); | 183 | fc_lport_enter_ns(lport, LPORT_ST_RNN_ID); |
184 | } else { | 184 | } else { |
185 | FC_LPORT_DBG(lport, "Received an READY event " | 185 | FC_LPORT_DBG(lport, "Received an READY event " |
186 | "on port (%6x) for the directory " | 186 | "on port (%6.6x) for the directory " |
187 | "server, but the lport is not " | 187 | "server, but the lport is not " |
188 | "in the DNS state, it's in the " | 188 | "in the DNS state, it's in the " |
189 | "%d state", rdata->ids.port_id, | 189 | "%d state", rdata->ids.port_id, |
@@ -575,7 +575,7 @@ void __fc_linkup(struct fc_lport *lport) | |||
575 | */ | 575 | */ |
576 | void fc_linkup(struct fc_lport *lport) | 576 | void fc_linkup(struct fc_lport *lport) |
577 | { | 577 | { |
578 | printk(KERN_INFO "host%d: libfc: Link up on port (%6x)\n", | 578 | printk(KERN_INFO "host%d: libfc: Link up on port (%6.6x)\n", |
579 | lport->host->host_no, fc_host_port_id(lport->host)); | 579 | lport->host->host_no, fc_host_port_id(lport->host)); |
580 | 580 | ||
581 | mutex_lock(&lport->lp_mutex); | 581 | mutex_lock(&lport->lp_mutex); |
@@ -605,7 +605,7 @@ void __fc_linkdown(struct fc_lport *lport) | |||
605 | */ | 605 | */ |
606 | void fc_linkdown(struct fc_lport *lport) | 606 | void fc_linkdown(struct fc_lport *lport) |
607 | { | 607 | { |
608 | printk(KERN_INFO "host%d: libfc: Link down on port (%6x)\n", | 608 | printk(KERN_INFO "host%d: libfc: Link down on port (%6.6x)\n", |
609 | lport->host->host_no, fc_host_port_id(lport->host)); | 609 | lport->host->host_no, fc_host_port_id(lport->host)); |
610 | 610 | ||
611 | mutex_lock(&lport->lp_mutex); | 611 | mutex_lock(&lport->lp_mutex); |
@@ -707,7 +707,7 @@ void fc_lport_disc_callback(struct fc_lport *lport, enum fc_disc_event event) | |||
707 | break; | 707 | break; |
708 | case DISC_EV_FAILED: | 708 | case DISC_EV_FAILED: |
709 | printk(KERN_ERR "host%d: libfc: " | 709 | printk(KERN_ERR "host%d: libfc: " |
710 | "Discovery failed for port (%6x)\n", | 710 | "Discovery failed for port (%6.6x)\n", |
711 | lport->host->host_no, fc_host_port_id(lport->host)); | 711 | lport->host->host_no, fc_host_port_id(lport->host)); |
712 | mutex_lock(&lport->lp_mutex); | 712 | mutex_lock(&lport->lp_mutex); |
713 | fc_lport_enter_reset(lport); | 713 | fc_lport_enter_reset(lport); |
@@ -753,7 +753,7 @@ static void fc_lport_set_port_id(struct fc_lport *lport, u32 port_id, | |||
753 | struct fc_frame *fp) | 753 | struct fc_frame *fp) |
754 | { | 754 | { |
755 | if (port_id) | 755 | if (port_id) |
756 | printk(KERN_INFO "host%d: Assigned Port ID %6x\n", | 756 | printk(KERN_INFO "host%d: Assigned Port ID %6.6x\n", |
757 | lport->host->host_no, port_id); | 757 | lport->host->host_no, port_id); |
758 | 758 | ||
759 | fc_host_port_id(lport->host) = port_id; | 759 | fc_host_port_id(lport->host) = port_id; |
@@ -1499,7 +1499,7 @@ void fc_lport_flogi_resp(struct fc_seq *sp, struct fc_frame *fp, | |||
1499 | lport->r_a_tov = 2 * e_d_tov; | 1499 | lport->r_a_tov = 2 * e_d_tov; |
1500 | fc_lport_set_port_id(lport, did, fp); | 1500 | fc_lport_set_port_id(lport, did, fp); |
1501 | printk(KERN_INFO "host%d: libfc: " | 1501 | printk(KERN_INFO "host%d: libfc: " |
1502 | "Port (%6x) entered " | 1502 | "Port (%6.6x) entered " |
1503 | "point-to-point mode\n", | 1503 | "point-to-point mode\n", |
1504 | lport->host->host_no, did); | 1504 | lport->host->host_no, did); |
1505 | fc_lport_ptp_setup(lport, ntoh24(fh->fh_s_id), | 1505 | fc_lport_ptp_setup(lport, ntoh24(fh->fh_s_id), |