[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <BD5813D3-84B4-4C6B-A0E5-270349A77571@cavium.com>
Date: Fri, 9 Jun 2017 14:09:22 +0000
From: "Madhani, Himanshu" <Himanshu.Madhani@...ium.com>
To: Arnd Bergmann <arnd@...db.de>
CC: Dept-Eng QLA2xxx Upstream <qla2xxx-upstream@...ium.com>,
"James E.J. Bottomley" <jejb@...ux.vnet.ibm.com>,
"Martin K. Petersen" <martin.petersen@...cle.com>,
"Tran, Quinn" <Quinn.Tran@...ium.com>,
Nicholas Bellinger <nab@...ux-iscsi.org>,
linux-scsi <linux-scsi@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] scsi: qla2xxx: fix printk format string warning on 32-bit
Hi Arnd,
> On Jun 9, 2017, at 3:46 AM, Arnd Bergmann <arnd@...db.de> wrote:
>
> On 32-bit architectures, we using %lx to print a size_t causes a harmless
> warning:
>
> qla2xxx/qla_init.c: In function 'qla24xx_load_risc_flash':
> qla2xxx/qla_init.c:6407:7: error: format '%lx' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Werror=format=]
> qla2xxx/qla_init.c: In function 'qla24xx_load_risc_blob':
> qla2xxx/qla_init.c:6709:7: error: format '%lx' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Werror=format=]
>
> The correct format string is %zx.
>
> Fixes: 0f110b54d157 ("scsi: qla2xxx: Retain loop test for fwdump length exceeding buffer length")
> Signed-off-by: Arnd Bergmann <arnd@...db.de>
> ---
> drivers/scsi/qla2xxx/qla_init.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c
> index 436968ad4484..730e7fe4344a 100644
> --- a/drivers/scsi/qla2xxx/qla_init.c
> +++ b/drivers/scsi/qla2xxx/qla_init.c
> @@ -6404,7 +6404,7 @@ qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
> "-> template size %x bytes\n", dlen);
> if (dlen > risc_size * sizeof(*dcode)) {
> ql_log(ql_log_warn, vha, 0x0167,
> - "Failed fwdump template exceeds array by %lx bytes\n",
> + "Failed fwdump template exceeds array by %zx bytes\n",
> (size_t)(dlen - risc_size * sizeof(*dcode)));
> goto default_template;
> }
> @@ -6706,7 +6706,7 @@ qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
> "-> template size %x bytes\n", dlen);
> if (dlen > risc_size * sizeof(*fwcode)) {
> ql_log(ql_log_warn, vha, 0x0177,
> - "Failed fwdump template exceeds array by %lx bytes\n",
> + "Failed fwdump template exceeds array by %zx bytes\n",
> (size_t)(dlen - risc_size * sizeof(*fwcode)));
> goto default_template;
> }
> --
> 2.9.0
>
I had posted patch already to fix this https://patchwork.kernel.org/patch/9769981/
Thanks,
- Himanshu
Powered by blists - more mailing lists