From: Stanislav Fomichev <stfomichev@gmail.com>
To: Paolo Abeni <pabeni@redhat.com>
Cc: Stanislav Fomichev <sdf@fomichev.me>,
netdev@vger.kernel.org, davem@davemloft.net, edumazet@google.com,
kuba@kernel.org, Mina Almasry <almasrymina@google.com>
Subject: Re: [PATCH net-next v4 03/12] selftests: ncdevmem: Unify error handling
Date: Tue, 22 Oct 2024 08:56:29 -0700 [thread overview]
Message-ID: <ZxfLLQ7C8HV96Hzs@mini-arch> (raw)
In-Reply-To: <5cfc763a-2d9a-4d87-8728-19db3f8e096d@redhat.com>
On 10/22, Paolo Abeni wrote:
>
>
> On 10/16/24 22:34, Stanislav Fomichev wrote:
> > There is a bunch of places where error() calls look out of place.
> > Use the same error(1, errno, ...) pattern everywhere.
> >
> > Reviewed-by: Mina Almasry <almasrymina@google.com>
> > Signed-off-by: Stanislav Fomichev <sdf@fomichev.me>
> > ---
> > tools/testing/selftests/net/ncdevmem.c | 12 ++++++------
> > 1 file changed, 6 insertions(+), 6 deletions(-)
> >
> > diff --git a/tools/testing/selftests/net/ncdevmem.c b/tools/testing/selftests/net/ncdevmem.c
> > index 9b3ca6398a9d..57437c34fdd2 100644
> > --- a/tools/testing/selftests/net/ncdevmem.c
> > +++ b/tools/testing/selftests/net/ncdevmem.c
> > @@ -340,32 +340,32 @@ int do_server(struct memory_buffer *mem)
> >
> > ret = inet_pton(server_sin.sin_family, server_ip, &server_sin.sin_addr);
> > if (socket < 0)
> > - error(79, 0, "%s: [FAIL, create socket]\n", TEST_PREFIX);
> > + error(1, 0, "%s: [FAIL, create socket]\n", TEST_PREFIX);
>
> The above statements should probably be:
>
> if (ret < 0)
> error(1, errno, ...
Agreed, thanks! (and it does seem like inet_pton sets the errno)
> >
> > socket_fd = socket(server_sin.sin_family, SOCK_STREAM, 0);
> > if (socket < 0)
>
> The above statements should probably be:
>
> if (socket_fd < 0)
>
> AFAICS 'socket' here is the syscall function pointer. I found it strange
> the compiler does not warn?!?
Huh, how did you even see that? :-D Yeah, the compiler is all happy and
quiet :-)
next prev parent reply other threads:[~2024-10-22 15:56 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-16 20:34 [PATCH net-next v4 00/12] selftests: ncdevmem: Add ncdevmem to ksft Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 01/12] selftests: ncdevmem: Redirect all non-payload output to stderr Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 02/12] selftests: ncdevmem: Separate out dmabuf provider Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 03/12] selftests: ncdevmem: Unify error handling Stanislav Fomichev
2024-10-22 9:37 ` Paolo Abeni
2024-10-22 15:56 ` Stanislav Fomichev [this message]
2024-10-16 20:34 ` [PATCH net-next v4 04/12] selftests: ncdevmem: Make client_ip optional Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 05/12] selftests: ncdevmem: Remove default arguments Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 06/12] selftests: ncdevmem: Switch to AF_INET6 Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 07/12] selftests: ncdevmem: Properly reset flow steering Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 08/12] selftests: ncdevmem: Use YNL to enable TCP header split Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 09/12] selftests: ncdevmem: Remove hard-coded queue numbers Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 10/12] selftests: ncdevmem: Run selftest when none of the -s or -c has been provided Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 11/12] selftests: ncdevmem: Move ncdevmem under drivers/net/hw Stanislav Fomichev
2024-10-16 20:34 ` [PATCH net-next v4 12/12] selftests: ncdevmem: Add automated test Stanislav Fomichev
2024-10-22 9:48 ` Paolo Abeni
2024-10-22 15:57 ` Stanislav Fomichev
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=ZxfLLQ7C8HV96Hzs@mini-arch \
--to=stfomichev@gmail.com \
--cc=almasrymina@google.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sdf@fomichev.me \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.