linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] scsi: fix u14-34f printk format warnings
@ 2014-07-24 18:07 Randy Dunlap
  2014-07-31 16:26 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2014-07-24 18:07 UTC (permalink / raw)
  To: James E.J. Bottomley, Christoph Hellwig; +Cc: linux-scsi, Dario Ballabio

From: Randy Dunlap <rdunlap@infradead.org>

Fix printk format warnings (seen on i386 builds):

../drivers/scsi/u14-34f.c: In function 'port_detect':
../drivers/scsi/u14-34f.c:630:28: warning: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'u64' [-Wformat=]
../drivers/scsi/u14-34f.c: In function 'u14_34f_queuecommand_lck':
../drivers/scsi/u14-34f.c:1290:25: warning: format '%llu' expects argument of type 'long long unsigned int', but argument 6 has type 'int' [-Wformat=]

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "James E.J. Bottomley" <JBottomley@parallels.com>
Cc: Christoph Hellwig <hch@infradead.org>
---
 drivers/scsi/u14-34f.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: linux-next-20140724/drivers/scsi/u14-34f.c
===================================================================
--- linux-next-20140724.orig/drivers/scsi/u14-34f.c
+++ linux-next-20140724/drivers/scsi/u14-34f.c
@@ -1006,7 +1006,7 @@ static int port_detect \
           sh[j]->irq, dma_name, sh[j]->sg_tablesize, sh[j]->can_queue);
 
    if (sh[j]->max_id > 8 || sh[j]->max_lun > 8)
-      printk("%s: wide SCSI support enabled, max_id %u, max_lun %u.\n",
+      printk("%s: wide SCSI support enabled, max_id %u, max_lun %llu.\n",
              BN(j), sh[j]->max_id, sh[j]->max_lun);
 
    for (i = 0; i <= sh[j]->max_channel; i++)
@@ -1285,7 +1285,7 @@ static int u14_34f_queuecommand_lck(stru
    cpp->cpp_index = i;
    SCpnt->host_scribble = (unsigned char *) &cpp->cpp_index;
 
-   if (do_trace) printk("%s: qcomm, mbox %d, target %d.%d:%llu.\n",
+   if (do_trace) printk("%s: qcomm, mbox %d, target %d.%d:%u.\n",
                         BN(j), i, SCpnt->device->channel, SCpnt->device->id,
                         (u8)SCpnt->device->lun);
 

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

* Re: [PATCH -next] scsi: fix u14-34f printk format warnings
  2014-07-24 18:07 [PATCH -next] scsi: fix u14-34f printk format warnings Randy Dunlap
@ 2014-07-31 16:26 ` Randy Dunlap
  2014-07-31 17:29   ` Christoph Hellwig
  2014-08-01  9:24   ` Hannes Reinecke
  0 siblings, 2 replies; 4+ messages in thread
From: Randy Dunlap @ 2014-07-31 16:26 UTC (permalink / raw)
  To: James E.J. Bottomley, Christoph Hellwig; +Cc: linux-scsi, Dario Ballabio

any comments?

Thanks.

On 07/24/14 11:07, Randy Dunlap wrote:
> From: Randy Dunlap <rdunlap@infradead.org>
> 
> Fix printk format warnings (seen on i386 builds):
> 
> ../drivers/scsi/u14-34f.c: In function 'port_detect':
> ../drivers/scsi/u14-34f.c:630:28: warning: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'u64' [-Wformat=]
> ../drivers/scsi/u14-34f.c: In function 'u14_34f_queuecommand_lck':
> ../drivers/scsi/u14-34f.c:1290:25: warning: format '%llu' expects argument of type 'long long unsigned int', but argument 6 has type 'int' [-Wformat=]
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: "James E.J. Bottomley" <JBottomley@parallels.com>
> Cc: Christoph Hellwig <hch@infradead.org>
> ---
>  drivers/scsi/u14-34f.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> Index: linux-next-20140724/drivers/scsi/u14-34f.c
> ===================================================================
> --- linux-next-20140724.orig/drivers/scsi/u14-34f.c
> +++ linux-next-20140724/drivers/scsi/u14-34f.c
> @@ -1006,7 +1006,7 @@ static int port_detect \
>            sh[j]->irq, dma_name, sh[j]->sg_tablesize, sh[j]->can_queue);
>  
>     if (sh[j]->max_id > 8 || sh[j]->max_lun > 8)
> -      printk("%s: wide SCSI support enabled, max_id %u, max_lun %u.\n",
> +      printk("%s: wide SCSI support enabled, max_id %u, max_lun %llu.\n",
>               BN(j), sh[j]->max_id, sh[j]->max_lun);
>  
>     for (i = 0; i <= sh[j]->max_channel; i++)
> @@ -1285,7 +1285,7 @@ static int u14_34f_queuecommand_lck(stru
>     cpp->cpp_index = i;
>     SCpnt->host_scribble = (unsigned char *) &cpp->cpp_index;
>  
> -   if (do_trace) printk("%s: qcomm, mbox %d, target %d.%d:%llu.\n",
> +   if (do_trace) printk("%s: qcomm, mbox %d, target %d.%d:%u.\n",
>                          BN(j), i, SCpnt->device->channel, SCpnt->device->id,
>                          (u8)SCpnt->device->lun);
>  
> --


-- 
~Randy

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

* Re: [PATCH -next] scsi: fix u14-34f printk format warnings
  2014-07-31 16:26 ` Randy Dunlap
@ 2014-07-31 17:29   ` Christoph Hellwig
  2014-08-01  9:24   ` Hannes Reinecke
  1 sibling, 0 replies; 4+ messages in thread
From: Christoph Hellwig @ 2014-07-31 17:29 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: James E.J. Bottomley, Christoph Hellwig, linux-scsi,
	Dario Ballabio

Thanks, Randy.

I'll merge it.  I usually want a second review for scsi patches, but I
guess this one is trivial enough to waive that requirement.

That being said is anyone still using the u14-34f driver?  From looking
at the commit history it doesn't really look either maintained or used..


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

* Re: [PATCH -next] scsi: fix u14-34f printk format warnings
  2014-07-31 16:26 ` Randy Dunlap
  2014-07-31 17:29   ` Christoph Hellwig
@ 2014-08-01  9:24   ` Hannes Reinecke
  1 sibling, 0 replies; 4+ messages in thread
From: Hannes Reinecke @ 2014-08-01  9:24 UTC (permalink / raw)
  To: Randy Dunlap, James E.J. Bottomley, Christoph Hellwig
  Cc: linux-scsi, Dario Ballabio

On 07/31/2014 06:26 PM, Randy Dunlap wrote:
> any comments?
>
> Thanks.
>
> On 07/24/14 11:07, Randy Dunlap wrote:
>> From: Randy Dunlap <rdunlap@infradead.org>
>>
>> Fix printk format warnings (seen on i386 builds):
>>
>> ../drivers/scsi/u14-34f.c: In function 'port_detect':
>> ../drivers/scsi/u14-34f.c:630:28: warning: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'u64' [-Wformat=]
>> ../drivers/scsi/u14-34f.c: In function 'u14_34f_queuecommand_lck':
>> ../drivers/scsi/u14-34f.c:1290:25: warning: format '%llu' expects argument of type 'long long unsigned int', but argument 6 has type 'int' [-Wformat=]
>>
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>> Cc: "James E.J. Bottomley" <JBottomley@parallels.com>
>> Cc: Christoph Hellwig <hch@infradead.org>
>> ---
>>   drivers/scsi/u14-34f.c |    4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> Index: linux-next-20140724/drivers/scsi/u14-34f.c
>> ===================================================================
>> --- linux-next-20140724.orig/drivers/scsi/u14-34f.c
>> +++ linux-next-20140724/drivers/scsi/u14-34f.c
>> @@ -1006,7 +1006,7 @@ static int port_detect \
>>             sh[j]->irq, dma_name, sh[j]->sg_tablesize, sh[j]->can_queue);
>>
>>      if (sh[j]->max_id > 8 || sh[j]->max_lun > 8)
>> -      printk("%s: wide SCSI support enabled, max_id %u, max_lun %u.\n",
>> +      printk("%s: wide SCSI support enabled, max_id %u, max_lun %llu.\n",
>>                BN(j), sh[j]->max_id, sh[j]->max_lun);
>>
>>      for (i = 0; i <= sh[j]->max_channel; i++)
>> @@ -1285,7 +1285,7 @@ static int u14_34f_queuecommand_lck(stru
>>      cpp->cpp_index = i;
>>      SCpnt->host_scribble = (unsigned char *) &cpp->cpp_index;
>>
>> -   if (do_trace) printk("%s: qcomm, mbox %d, target %d.%d:%llu.\n",
>> +   if (do_trace) printk("%s: qcomm, mbox %d, target %d.%d:%u.\n",
>>                           BN(j), i, SCpnt->device->channel, SCpnt->device->id,
>>                           (u8)SCpnt->device->lun);
>>
>> --
>
>
Reviewed-by: Hannes Reinecke <hare@suse.de>

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		      zSeries & Storage
hare@suse.de			      +49 911 74053 688
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: J. Hawn, J. Guild, F. Imendörffer, HRB 16746 (AG Nürnberg)
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-08-01  9:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-24 18:07 [PATCH -next] scsi: fix u14-34f printk format warnings Randy Dunlap
2014-07-31 16:26 ` Randy Dunlap
2014-07-31 17:29   ` Christoph Hellwig
2014-08-01  9:24   ` Hannes Reinecke

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).