LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] cifs: smbd: Fix printk format warning for iov on the stack
@ 2018-04-24 9:34 Matt Redfearn
2018-04-24 23:33 ` Steve French
0 siblings, 1 reply; 2+ messages in thread
From: Matt Redfearn @ 2018-04-24 9:34 UTC (permalink / raw)
To: Long Li, Steve French
Cc: Matt Redfearn, linux-cifs, samba-technical, linux-kernel, Steve French
Commit 4863cc758216 ("cifs: smbd: Avoid allocating iov on the stack")
(next-20180424) added a warning when the pdu size is not as expected,
but used a %lu for the printk warning. This results in the following
warning being emitted from MIPS allyesconfig builds:
fs/cifs/smbdirect.c:2106:3: warning: format '%lu' expects argument of
type 'long unsigned int', but argument 4 has type 'size_t' [-Wformat=]
Change the format specifier to %zu for the size_t argument.
Fixes: 4863cc758216 ("cifs: smbd: Avoid allocating iov on the stack")
Signed-off-by: Matt Redfearn <matt.redfearn@mips.com>
---
This is new in next-20180424. Feel free to squash this if possible
before it hits master.
---
fs/cifs/smbdirect.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c
index 24cea63e17f5..c62f7c95683c 100644
--- a/fs/cifs/smbdirect.c
+++ b/fs/cifs/smbdirect.c
@@ -2103,7 +2103,7 @@ int smbd_send(struct smbd_connection *info, struct smb_rqst *rqst)
*/
if (rqst->rq_iov[0].iov_len != 4) {
- log_write(ERR, "expected the pdu length in 1st iov, but got %lu\n", rqst->rq_iov[0].iov_len);
+ log_write(ERR, "expected the pdu length in 1st iov, but got %zu\n", rqst->rq_iov[0].iov_len);
return -EINVAL;
}
iov = &rqst->rq_iov[1];
--
2.7.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] cifs: smbd: Fix printk format warning for iov on the stack
2018-04-24 9:34 [PATCH] cifs: smbd: Fix printk format warning for iov on the stack Matt Redfearn
@ 2018-04-24 23:33 ` Steve French
0 siblings, 0 replies; 2+ messages in thread
From: Steve French @ 2018-04-24 23:33 UTC (permalink / raw)
To: Matt Redfearn; +Cc: Long Li, CIFS, samba-technical, LKML, Steve French
Updated the original patch with Matt's suggestion and added him on CC
and repushed to cifs-2.6.git for-next
On Tue, Apr 24, 2018 at 4:34 AM, Matt Redfearn <matt.redfearn@mips.com> wrote:
> Commit 4863cc758216 ("cifs: smbd: Avoid allocating iov on the stack")
> (next-20180424) added a warning when the pdu size is not as expected,
> but used a %lu for the printk warning. This results in the following
> warning being emitted from MIPS allyesconfig builds:
>
> fs/cifs/smbdirect.c:2106:3: warning: format '%lu' expects argument of
> type 'long unsigned int', but argument 4 has type 'size_t' [-Wformat=]
>
> Change the format specifier to %zu for the size_t argument.
>
> Fixes: 4863cc758216 ("cifs: smbd: Avoid allocating iov on the stack")
> Signed-off-by: Matt Redfearn <matt.redfearn@mips.com>
>
> ---
>
> This is new in next-20180424. Feel free to squash this if possible
> before it hits master.
>
> ---
> fs/cifs/smbdirect.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c
> index 24cea63e17f5..c62f7c95683c 100644
> --- a/fs/cifs/smbdirect.c
> +++ b/fs/cifs/smbdirect.c
> @@ -2103,7 +2103,7 @@ int smbd_send(struct smbd_connection *info, struct smb_rqst *rqst)
> */
>
> if (rqst->rq_iov[0].iov_len != 4) {
> - log_write(ERR, "expected the pdu length in 1st iov, but got %lu\n", rqst->rq_iov[0].iov_len);
> + log_write(ERR, "expected the pdu length in 1st iov, but got %zu\n", rqst->rq_iov[0].iov_len);
> return -EINVAL;
> }
> iov = &rqst->rq_iov[1];
> --
> 2.7.4
>
--
Thanks,
Steve
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-04-24 23:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-24 9:34 [PATCH] cifs: smbd: Fix printk format warning for iov on the stack Matt Redfearn
2018-04-24 23:33 ` Steve French
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).