From: Simon Horman <horms@kernel.org>
To: Haiyue Wang <haiyuewa@163.com>
Cc: netdev@vger.kernel.org, Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Shuah Khan <shuah@kernel.org>, Jens Axboe <axboe@kernel.dk>,
David Wei <dw@davidwei.uk>,
"open list:KERNEL SELFTEST FRAMEWORK"
<linux-kselftest@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH net v1] selftests: iou-zcrx: Clean up build warnings for error format
Date: Fri, 2 May 2025 18:22:17 +0100 [thread overview]
Message-ID: <20250502172217.GO3339421@horms.kernel.org> (raw)
In-Reply-To: <20250502042240.17371-1-haiyuewa@163.com>
On Fri, May 02, 2025 at 12:22:20PM +0800, Haiyue Wang wrote:
> Clean up two build warnings:
>
> [1]:
> iou-zcrx.c: In function ‘process_recvzc’:
> iou-zcrx.c:263:37: warning: too many arguments for
> format [-Wformat-extra-args]
> 263 | error(1, 0, "payload mismatch at ", i);
> | ^~~~~~~~~~~~~~~~~~~~~~
>
> [2]:
> iou-zcrx.c: In function ‘run_client’:
> iou-zcrx.c:357:47: warning: format ‘%d’ expects argument of
> type ‘int’, but argument 4 has
> type ‘ssize_t’ {aka ‘long int’} [-Wformat=]
> 357 | error(1, 0, "send(): %d", sent);
> | ~^ ~~~~
> | | |
> | int ssize_t {aka long int}
> | %ld
>
> Signed-off-by: Haiyue Wang <haiyuewa@163.com>
Hi Haiyue Wang,
This feels more like a clean-up for net-next than a bug-fix to net.
> ---
> tools/testing/selftests/drivers/net/hw/iou-zcrx.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/testing/selftests/drivers/net/hw/iou-zcrx.c b/tools/testing/selftests/drivers/net/hw/iou-zcrx.c
> index c26b4180eddd..19e1ff45deb4 100644
> --- a/tools/testing/selftests/drivers/net/hw/iou-zcrx.c
> +++ b/tools/testing/selftests/drivers/net/hw/iou-zcrx.c
> @@ -260,7 +260,7 @@ static void process_recvzc(struct io_uring *ring, struct io_uring_cqe *cqe)
>
> for (i = 0; i < n; i++) {
> if (*(data + i) != payload[(received + i)])
> - error(1, 0, "payload mismatch at ", i);
> + error(1, 0, "payload mismatch at %d", i);
> }
> received += n;
>
> @@ -354,7 +354,7 @@ static void run_client(void)
> chunk = min_t(ssize_t, cfg_payload_len, to_send);
> res = send(fd, src, chunk, 0);
> if (res < 0)
> - error(1, 0, "send(): %d", sent);
> + error(1, 0, "send(): %ld", sent);
As the type of sent is ssize_t I think that "%zd" would be best here.
> sent += res;
> to_send -= res;
> }
> --
> 2.49.0
>
>
--
pw-bot: changes-requested
prev parent reply other threads:[~2025-05-02 17:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-02 4:22 [PATCH net v1] selftests: iou-zcrx: Clean up build warnings for error format Haiyue Wang
2025-05-02 17:22 ` Simon Horman [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250502172217.GO3339421@horms.kernel.org \
--to=horms@kernel.org \
--cc=andrew+netdev@lunn.ch \
--cc=axboe@kernel.dk \
--cc=davem@davemloft.net \
--cc=dw@davidwei.uk \
--cc=edumazet@google.com \
--cc=haiyuewa@163.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=shuah@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).