linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iscsi: Fix some debug printf types
@ 2009-01-12 15:30 Boaz Harrosh
       [not found] ` <496B621A.6000300-C4P08NqkoRlBDgjK7y7TUQ@public.gmane.org>
  2009-02-08 19:08 ` Mike Christie
  0 siblings, 2 replies; 4+ messages in thread
From: Boaz Harrosh @ 2009-01-12 15:30 UTC (permalink / raw)
  To: Mike Christie, open-iscsi; +Cc: linux-scsi


A couple of prints at lib/iscsi_tcp had the %Z missing from the
kprint format string. Just to show that debug_prints are not enabled
much.

Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
---
 drivers/scsi/iscsi_tcp.c    |    2 +-
 drivers/scsi/libiscsi_tcp.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
index 23808df..a566aa9 100644
--- a/drivers/scsi/iscsi_tcp.c
+++ b/drivers/scsi/iscsi_tcp.c
@@ -415,7 +415,7 @@ iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn *conn, void *data,
 	struct hash_desc *tx_hash = NULL;
 	unsigned int hdr_spec_len;
 
-	debug_tcp("%s(%p, datalen=%d%s)\n", __func__, tcp_conn, len,
+	debug_tcp("%s(%p, datalen=%Zd%s)\n", __func__, tcp_conn, len,
 		  conn->datadgst_en? ", digest enabled" : "");
 
 	/* Make sure the datalen matches what the caller
diff --git a/drivers/scsi/libiscsi_tcp.c b/drivers/scsi/libiscsi_tcp.c
index a745f91..12354c5 100644
--- a/drivers/scsi/libiscsi_tcp.c
+++ b/drivers/scsi/libiscsi_tcp.c
@@ -356,7 +356,7 @@ iscsi_segment_seek_sg(struct iscsi_segment *segment,
 	struct scatterlist *sg;
 	unsigned int i;
 
-	debug_scsi("iscsi_segment_seek_sg offset %u size %llu\n",
+	debug_scsi("iscsi_segment_seek_sg offset %u size %Zu\n",
 		  offset, size);
 	__iscsi_segment_init(segment, size, done, hash);
 	for_each_sg(sg_list, sg, sg_count, i) {
-- 
1.6.0.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] iscsi: Fix some debug printf types
       [not found] ` <496B621A.6000300-C4P08NqkoRlBDgjK7y7TUQ@public.gmane.org>
@ 2009-01-13  6:11   ` Andrew McGill
  2009-01-13 17:20     ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew McGill @ 2009-01-13  6:11 UTC (permalink / raw)
  To: open-iscsi-/JYPxA39Uh5TLH3MbocFFw; +Cc: Boaz Harrosh, Mike Christie, linux-scsi


My man page for (glibc) printf says that "Z" is specific to libc5, and 
that "z" is better -- man -P 'less -p" z "' fprintf   Does the underlying 
printf support "Z" rather than "z"?

QOTD>>
 z 
  A following integer conversion corresponds to a size_t or ssize_t argument.
  (Linux libc5 has Z with this meaning. Don't use it.)

&:-)


On Monday 12 January 2009 17:30:34 Boaz Harrosh wrote:
> A couple of prints at lib/iscsi_tcp had the %Z missing from the
> kprint format string. Just to show that debug_prints are not enabled
> much.
>
> Signed-off-by: Boaz Harrosh <bharrosh-C4P08NqkoRlBDgjK7y7TUQ@public.gmane.org>
> ---
>  drivers/scsi/iscsi_tcp.c    |    2 +-
>  drivers/scsi/libiscsi_tcp.c |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
> index 23808df..a566aa9 100644
> --- a/drivers/scsi/iscsi_tcp.c
> +++ b/drivers/scsi/iscsi_tcp.c
> @@ -415,7 +415,7 @@ iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn
> *conn, void *data, struct hash_desc *tx_hash = NULL;
>  	unsigned int hdr_spec_len;
>
> -	debug_tcp("%s(%p, datalen=%d%s)\n", __func__, tcp_conn, len,
> +	debug_tcp("%s(%p, datalen=%Zd%s)\n", __func__, tcp_conn, len,
>  		  conn->datadgst_en? ", digest enabled" : "");
>
>  	/* Make sure the datalen matches what the caller
> diff --git a/drivers/scsi/libiscsi_tcp.c b/drivers/scsi/libiscsi_tcp.c
> index a745f91..12354c5 100644
> --- a/drivers/scsi/libiscsi_tcp.c
> +++ b/drivers/scsi/libiscsi_tcp.c
> @@ -356,7 +356,7 @@ iscsi_segment_seek_sg(struct iscsi_segment *segment,
>  	struct scatterlist *sg;
>  	unsigned int i;
>
> -	debug_scsi("iscsi_segment_seek_sg offset %u size %llu\n",
> +	debug_scsi("iscsi_segment_seek_sg offset %u size %Zu\n",
>  		  offset, size);
>  	__iscsi_segment_init(segment, size, done, hash);
>  	for_each_sg(sg_list, sg, sg_count, i) {

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] iscsi: Fix some debug printf types
  2009-01-13  6:11   ` Andrew McGill
@ 2009-01-13 17:20     ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2009-01-13 17:20 UTC (permalink / raw)
  To: Andrew McGill; +Cc: open-iscsi, Boaz Harrosh, Mike Christie, linux-scsi

Andrew McGill wrote:
> My man page for (glibc) printf says that "Z" is specific to libc5, and 
> that "z" is better -- man -P 'less -p" z "' fprintf   Does the underlying 
> printf support "Z" rather than "z"?
> 
> QOTD>>
>  z 
>   A following integer conversion corresponds to a size_t or ssize_t argument.
>   (Linux libc5 has Z with this meaning. Don't use it.)
> 
> &:-)

Agreed.  We are trying to use small z instead of big Z in Linux
since small z is ANSI C.

> 
> On Monday 12 January 2009 17:30:34 Boaz Harrosh wrote:
>> A couple of prints at lib/iscsi_tcp had the %Z missing from the
>> kprint format string. Just to show that debug_prints are not enabled
>> much.
>>
>> Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
>> ---
>>  drivers/scsi/iscsi_tcp.c    |    2 +-
>>  drivers/scsi/libiscsi_tcp.c |    2 +-
>>  2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
>> index 23808df..a566aa9 100644
>> --- a/drivers/scsi/iscsi_tcp.c
>> +++ b/drivers/scsi/iscsi_tcp.c
>> @@ -415,7 +415,7 @@ iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn
>> *conn, void *data, struct hash_desc *tx_hash = NULL;
>>  	unsigned int hdr_spec_len;
>>
>> -	debug_tcp("%s(%p, datalen=%d%s)\n", __func__, tcp_conn, len,
>> +	debug_tcp("%s(%p, datalen=%Zd%s)\n", __func__, tcp_conn, len,
>>  		  conn->datadgst_en? ", digest enabled" : "");
>>
>>  	/* Make sure the datalen matches what the caller
>> diff --git a/drivers/scsi/libiscsi_tcp.c b/drivers/scsi/libiscsi_tcp.c
>> index a745f91..12354c5 100644
>> --- a/drivers/scsi/libiscsi_tcp.c
>> +++ b/drivers/scsi/libiscsi_tcp.c
>> @@ -356,7 +356,7 @@ iscsi_segment_seek_sg(struct iscsi_segment *segment,
>>  	struct scatterlist *sg;
>>  	unsigned int i;
>>
>> -	debug_scsi("iscsi_segment_seek_sg offset %u size %llu\n",
>> +	debug_scsi("iscsi_segment_seek_sg offset %u size %Zu\n",
>>  		  offset, size);
>>  	__iscsi_segment_init(segment, size, done, hash);
>>  	for_each_sg(sg_list, sg, sg_count, i) {


-- 
~Randy

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] iscsi: Fix some debug printf types
  2009-01-12 15:30 [PATCH] iscsi: Fix some debug printf types Boaz Harrosh
       [not found] ` <496B621A.6000300-C4P08NqkoRlBDgjK7y7TUQ@public.gmane.org>
@ 2009-02-08 19:08 ` Mike Christie
  1 sibling, 0 replies; 4+ messages in thread
From: Mike Christie @ 2009-02-08 19:08 UTC (permalink / raw)
  To: open-iscsi; +Cc: linux-scsi

Boaz Harrosh wrote:
> 
> A couple of prints at lib/iscsi_tcp had the %Z missing from the
> kprint format string. Just to show that debug_prints are not enabled
> much.
> 
> Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
> ---
>  drivers/scsi/iscsi_tcp.c    |    2 +-
>  drivers/scsi/libiscsi_tcp.c |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
> index 23808df..a566aa9 100644
> --- a/drivers/scsi/iscsi_tcp.c
> +++ b/drivers/scsi/iscsi_tcp.c
> @@ -415,7 +415,7 @@ iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn *conn, void *data,
>  	struct hash_desc *tx_hash = NULL;
>  	unsigned int hdr_spec_len;
>  
> -	debug_tcp("%s(%p, datalen=%d%s)\n", __func__, tcp_conn, len,
> +	debug_tcp("%s(%p, datalen=%Zd%s)\n", __func__, tcp_conn, len,
>  		  conn->datadgst_en? ", digest enabled" : "");
>  


I got these fixed when I did the modparam debug patch.

I used a lower case z (%zd) though. I thought I saw that in a review 
comment from Andrew Morton or in a kernel janitor patch, so I thought 
that was the preferred way to do it in kernel code, but was not 100% 
sure. Let me know if I goofed and I will fix it.

Thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-02-08 19:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-12 15:30 [PATCH] iscsi: Fix some debug printf types Boaz Harrosh
     [not found] ` <496B621A.6000300-C4P08NqkoRlBDgjK7y7TUQ@public.gmane.org>
2009-01-13  6:11   ` Andrew McGill
2009-01-13 17:20     ` Randy Dunlap
2009-02-08 19:08 ` Mike Christie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).