netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Stanislav Fomichev <stfomichev@gmail.com>
To: Mina Almasry <almasrymina@google.com>
Cc: Stanislav Fomichev <sdf@fomichev.me>,
	netdev@vger.kernel.org, davem@davemloft.net, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com
Subject: Re: [PATCH net-next v3 05/12] selftests: ncdevmem: Remove default arguments
Date: Mon, 14 Oct 2024 07:53:12 -0700	[thread overview]
Message-ID: <Zw0wWGl7KDYVWL3b@mini-arch> (raw)
In-Reply-To: <CAHS8izNuNwSjWTkHo545HT8r2JEp_idY34NGPEEyiTj8XmzW3Q@mail.gmail.com>

On 10/12, Mina Almasry wrote:
> On Wed, Oct 9, 2024 at 10:13 AM Stanislav Fomichev <sdf@fomichev.me> wrote:
> >
> > To make it clear what's required and what's not. Also, some of the
> > values don't seem like a good defaults; for example eth1.
> >
> > Move the invocation comment to the top, add missing -s to the client
> > and cleanup the client invocation a bit to make more readable.
> >
> > Cc: Mina Almasry <almasrymina@google.com>
> > Signed-off-by: Stanislav Fomichev <sdf@fomichev.me>
> > ---
> >  tools/testing/selftests/net/ncdevmem.c | 49 ++++++++++++++------------
> >  1 file changed, 27 insertions(+), 22 deletions(-)
> >
> > diff --git a/tools/testing/selftests/net/ncdevmem.c b/tools/testing/selftests/net/ncdevmem.c
> > index 2ee7b4eb9f71..99ae3a595787 100644
> > --- a/tools/testing/selftests/net/ncdevmem.c
> > +++ b/tools/testing/selftests/net/ncdevmem.c
> > @@ -1,4 +1,19 @@
> >  // SPDX-License-Identifier: GPL-2.0
> > +/*
> > + * tcpdevmem netcat. Works similarly to netcat but does device memory TCP
> > + * instead of regular TCP. Uses udmabuf to mock a dmabuf provider.
> > + *
> > + * Usage:
> > + *
> > + *     On server:
> > + *     ncdevmem -s <server IP> [-c <client IP>] -f eth1 -l -p 5201
> > + *
> > + *     On client:
> > + *     echo -n "hello\nworld" | nc -s <server IP> 5201 -p 5201
> > + *
> 
> No need to remove the documentation telling users how to do validation
> when moving these docs. Please have a secondary section that retains
> the docs for the validation:
> 
> * Usage:
> 
> (what you have)
> 
> * Test data validation:
> 
> (What I had before)
> 
> With that:
> 
> Reviewed-by: Mina Almasry <almasrymina@google.com>

SG, will do, thanks!

  reply	other threads:[~2024-10-14 14:53 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-09 17:12 [PATCH net-next v3 00/12] selftests: ncdevmem: Add ncdevmem to ksft Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 01/12] selftests: ncdevmem: Redirect all non-payload output to stderr Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 02/12] selftests: ncdevmem: Separate out dmabuf provider Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 03/12] selftests: ncdevmem: Unify error handling Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 04/12] selftests: ncdevmem: Make client_ip optional Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 05/12] selftests: ncdevmem: Remove default arguments Stanislav Fomichev
2024-10-13  3:47   ` Mina Almasry
2024-10-14 14:53     ` Stanislav Fomichev [this message]
2024-10-09 17:12 ` [PATCH net-next v3 06/12] selftests: ncdevmem: Switch to AF_INET6 Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 07/12] selftests: ncdevmem: Properly reset flow steering Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 08/12] selftests: ncdevmem: Use YNL to enable TCP header split Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 09/12] selftests: ncdevmem: Remove hard-coded queue numbers Stanislav Fomichev
2024-10-13  3:50   ` Mina Almasry
2024-10-14 14:47     ` Stanislav Fomichev
2024-10-14 22:49       ` Mina Almasry
2024-10-09 17:12 ` [PATCH net-next v3 10/12] selftests: ncdevmem: Run selftest when none of the -s or -c has been provided Stanislav Fomichev
2024-10-10  4:19   ` Stanislav Fomichev
2024-10-14 22:47   ` Mina Almasry
2024-10-09 17:12 ` [PATCH net-next v3 11/12] selftests: ncdevmem: Move ncdevmem under drivers/net/hw Stanislav Fomichev
2024-10-09 17:12 ` [PATCH net-next v3 12/12] selftests: ncdevmem: Add automated test 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=Zw0wWGl7KDYVWL3b@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 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).