diff mbox series

[net-next,v2,08/12] selftests: ncdevmem: Use YNL to enable TCP header split

Message ID 20240930171753.2572922-9-sdf@fomichev.me (mailing list archive)
State Superseded
Delegated to: Netdev Maintainers
Headers show
Series selftests: ncdevmem: Add ncdevmem to ksft | expand

Checks

Context Check Description
netdev/series_format success Posting correctly formatted
netdev/tree_selection success Clearly marked for net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 9 this patch: 9
netdev/build_tools fail Errors and warnings before: 0 this patch: 2
netdev/cc_maintainers warning 2 maintainers not CCed: shuah@kernel.org linux-kselftest@vger.kernel.org
netdev/build_clang success Errors and warnings before: 10 this patch: 10
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn fail Errors and warnings before: 12 this patch: 12
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 73 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Stanislav Fomichev Sept. 30, 2024, 5:17 p.m. UTC
In the next patch the hard-coded queue numbers are gonna be removed.
So introduce some initial support for ethtool YNL and use
it to enable header split.

Also, tcp-data-split requires latest ethtool which is unlikely
to be present in the distros right now.

(ideally, we should not shell out to ethtool at all).

Cc: Mina Almasry <almasrymina@google.com>
Signed-off-by: Stanislav Fomichev <sdf@fomichev.me>
---
 tools/testing/selftests/net/Makefile   |  2 +-
 tools/testing/selftests/net/ncdevmem.c | 43 ++++++++++++++++++++++++--
 2 files changed, 42 insertions(+), 3 deletions(-)

Comments

Mina Almasry Oct. 3, 2024, 7:22 a.m. UTC | #1
On Mon, Sep 30, 2024 at 10:18 AM Stanislav Fomichev <sdf@fomichev.me> wrote:
>
> In the next patch the hard-coded queue numbers are gonna be removed.
> So introduce some initial support for ethtool YNL and use
> it to enable header split.
>
> Also, tcp-data-split requires latest ethtool which is unlikely
> to be present in the distros right now.
>
> (ideally, we should not shell out to ethtool at all).
>
> Cc: Mina Almasry <almasrymina@google.com>
> Signed-off-by: Stanislav Fomichev <sdf@fomichev.me>
> ---
>  tools/testing/selftests/net/Makefile   |  2 +-
>  tools/testing/selftests/net/ncdevmem.c | 43 ++++++++++++++++++++++++--
>  2 files changed, 42 insertions(+), 3 deletions(-)
>
> diff --git a/tools/testing/selftests/net/Makefile b/tools/testing/selftests/net/Makefile
> index 649f1fe0dc46..9c970e96ed33 100644
> --- a/tools/testing/selftests/net/Makefile
> +++ b/tools/testing/selftests/net/Makefile
> @@ -112,7 +112,7 @@ TEST_INCLUDES := forwarding/lib.sh
>  include ../lib.mk
>
>  # YNL build
> -YNL_GENS := netdev
> +YNL_GENS := ethtool netdev
>  include ynl.mk
>
>  $(OUTPUT)/epoll_busy_poll: LDLIBS += -lcap
> diff --git a/tools/testing/selftests/net/ncdevmem.c b/tools/testing/selftests/net/ncdevmem.c
> index 48cbf057fde7..a1fa818c8229 100644
> --- a/tools/testing/selftests/net/ncdevmem.c
> +++ b/tools/testing/selftests/net/ncdevmem.c
> @@ -28,10 +28,12 @@
>  #include <linux/netlink.h>
>  #include <linux/genetlink.h>
>  #include <linux/netdev.h>
> +#include <linux/ethtool_netlink.h>
>  #include <time.h>
>  #include <net/if.h>
>
>  #include "netdev-user.h"
> +#include "ethtool-user.h"
>  #include <ynl.h>
>
>  #define PAGE_SHIFT 12
> @@ -217,8 +219,42 @@ static int reset_flow_steering(void)
>
>  static int configure_headersplit(bool on)
>  {
> -       return run_command("sudo ethtool -G %s tcp-data-split %s >&2", ifname,
> -                          on ? "on" : "off");
> +       struct ethtool_rings_set_req *req;
> +       struct ynl_error yerr;
> +       struct ynl_sock *ys;
> +       int ret;
> +
> +       ys = ynl_sock_create(&ynl_ethtool_family, &yerr);
> +       if (!ys) {
> +               fprintf(stderr, "YNL: %s\n", yerr.msg);
> +               return -1;
> +       }
> +
> +       req = ethtool_rings_set_req_alloc();
> +       ethtool_rings_set_req_set_header_dev_index(req, ifindex);
> +       ethtool_rings_set_req_set_tcp_data_split(req, on ? 2 : 0);

I'm guessing 2 is explicit on? 1 being auto probably? A comment would
be nice, but that's just a nit.

> +       ret = ethtool_rings_set(ys, req);
> +       if (ret < 0)
> +               fprintf(stderr, "YNL failed: %s\n", ys->err.msg);

Don't you wanna return ret; here on error?

> +       ethtool_rings_set_req_free(req);
> +
> +       {
> +               struct ethtool_rings_get_req *req;
> +               struct ethtool_rings_get_rsp *rsp;
> +

I'm guessing you're creating a new scope to re-declare req/rsp? To be
honest it's a bit weird style I haven't seen anywhere else. I would
prefer get_req and get_rsp instead, but this is a nit.

> +               req = ethtool_rings_get_req_alloc();
> +               ethtool_rings_get_req_set_header_dev_index(req, ifindex);
> +               rsp = ethtool_rings_get(ys, req);
> +               ethtool_rings_get_req_free(req);
> +               if (rsp)
> +                       fprintf(stderr, "TCP header split: %d\n",
> +                               rsp->tcp_data_split);

I would prefer to cehck that rsp->tcp_data_split == 2 for 'on' and ==
0 for 'off' instead of just printing and relying on the user to notice
the mismatch in the logs.

Consider addressing the feedback, but mostly nits/improvements that
can be done later, so:

Reviewed-by: Mina Almasry <almasrymina@google.com>
Stanislav Fomichev Oct. 3, 2024, 4:57 p.m. UTC | #2
On 10/03, Mina Almasry wrote:
> On Mon, Sep 30, 2024 at 10:18 AM Stanislav Fomichev <sdf@fomichev.me> wrote:
> >
> > In the next patch the hard-coded queue numbers are gonna be removed.
> > So introduce some initial support for ethtool YNL and use
> > it to enable header split.
> >
> > Also, tcp-data-split requires latest ethtool which is unlikely
> > to be present in the distros right now.
> >
> > (ideally, we should not shell out to ethtool at all).
> >
> > Cc: Mina Almasry <almasrymina@google.com>
> > Signed-off-by: Stanislav Fomichev <sdf@fomichev.me>
> > ---
> >  tools/testing/selftests/net/Makefile   |  2 +-
> >  tools/testing/selftests/net/ncdevmem.c | 43 ++++++++++++++++++++++++--
> >  2 files changed, 42 insertions(+), 3 deletions(-)
> >
> > diff --git a/tools/testing/selftests/net/Makefile b/tools/testing/selftests/net/Makefile
> > index 649f1fe0dc46..9c970e96ed33 100644
> > --- a/tools/testing/selftests/net/Makefile
> > +++ b/tools/testing/selftests/net/Makefile
> > @@ -112,7 +112,7 @@ TEST_INCLUDES := forwarding/lib.sh
> >  include ../lib.mk
> >
> >  # YNL build
> > -YNL_GENS := netdev
> > +YNL_GENS := ethtool netdev
> >  include ynl.mk
> >
> >  $(OUTPUT)/epoll_busy_poll: LDLIBS += -lcap
> > diff --git a/tools/testing/selftests/net/ncdevmem.c b/tools/testing/selftests/net/ncdevmem.c
> > index 48cbf057fde7..a1fa818c8229 100644
> > --- a/tools/testing/selftests/net/ncdevmem.c
> > +++ b/tools/testing/selftests/net/ncdevmem.c
> > @@ -28,10 +28,12 @@
> >  #include <linux/netlink.h>
> >  #include <linux/genetlink.h>
> >  #include <linux/netdev.h>
> > +#include <linux/ethtool_netlink.h>
> >  #include <time.h>
> >  #include <net/if.h>
> >
> >  #include "netdev-user.h"
> > +#include "ethtool-user.h"
> >  #include <ynl.h>
> >
> >  #define PAGE_SHIFT 12
> > @@ -217,8 +219,42 @@ static int reset_flow_steering(void)
> >
> >  static int configure_headersplit(bool on)
> >  {
> > -       return run_command("sudo ethtool -G %s tcp-data-split %s >&2", ifname,
> > -                          on ? "on" : "off");
> > +       struct ethtool_rings_set_req *req;
> > +       struct ynl_error yerr;
> > +       struct ynl_sock *ys;
> > +       int ret;
> > +
> > +       ys = ynl_sock_create(&ynl_ethtool_family, &yerr);
> > +       if (!ys) {
> > +               fprintf(stderr, "YNL: %s\n", yerr.msg);
> > +               return -1;
> > +       }
> > +
> > +       req = ethtool_rings_set_req_alloc();
> > +       ethtool_rings_set_req_set_header_dev_index(req, ifindex);
> > +       ethtool_rings_set_req_set_tcp_data_split(req, on ? 2 : 0);
> 
> I'm guessing 2 is explicit on? 1 being auto probably? A comment would
> be nice, but that's just a nit.

Sure, will add.

> > +       ret = ethtool_rings_set(ys, req);
> > +       if (ret < 0)
> > +               fprintf(stderr, "YNL failed: %s\n", ys->err.msg);
> 
> Don't you wanna return ret; here on error?

Good point. Will add 'if (ret == 0)' to the get request.

> > +       ethtool_rings_set_req_free(req);
> > +
> > +       {
> > +               struct ethtool_rings_get_req *req;
> > +               struct ethtool_rings_get_rsp *rsp;
> > +
> 
> I'm guessing you're creating a new scope to re-declare req/rsp? To be
> honest it's a bit weird style I haven't seen anywhere else. I would
> prefer get_req and get_rsp instead, but this is a nit.

SG.

> > +               req = ethtool_rings_get_req_alloc();
> > +               ethtool_rings_get_req_set_header_dev_index(req, ifindex);
> > +               rsp = ethtool_rings_get(ys, req);
> > +               ethtool_rings_get_req_free(req);
> > +               if (rsp)
> > +                       fprintf(stderr, "TCP header split: %d\n",
> > +                               rsp->tcp_data_split);
> 
> I would prefer to cehck that rsp->tcp_data_split == 2 for 'on' and ==
> 0 for 'off' instead of just printing and relying on the user to notice
> the mismatch in the logs.

Will do, thanks!
 
> Consider addressing the feedback, but mostly nits/improvements that
> can be done later, so:
> 
> Reviewed-by: Mina Almasry <almasrymina@google.com>
diff mbox series

Patch

diff --git a/tools/testing/selftests/net/Makefile b/tools/testing/selftests/net/Makefile
index 649f1fe0dc46..9c970e96ed33 100644
--- a/tools/testing/selftests/net/Makefile
+++ b/tools/testing/selftests/net/Makefile
@@ -112,7 +112,7 @@  TEST_INCLUDES := forwarding/lib.sh
 include ../lib.mk
 
 # YNL build
-YNL_GENS := netdev
+YNL_GENS := ethtool netdev
 include ynl.mk
 
 $(OUTPUT)/epoll_busy_poll: LDLIBS += -lcap
diff --git a/tools/testing/selftests/net/ncdevmem.c b/tools/testing/selftests/net/ncdevmem.c
index 48cbf057fde7..a1fa818c8229 100644
--- a/tools/testing/selftests/net/ncdevmem.c
+++ b/tools/testing/selftests/net/ncdevmem.c
@@ -28,10 +28,12 @@ 
 #include <linux/netlink.h>
 #include <linux/genetlink.h>
 #include <linux/netdev.h>
+#include <linux/ethtool_netlink.h>
 #include <time.h>
 #include <net/if.h>
 
 #include "netdev-user.h"
+#include "ethtool-user.h"
 #include <ynl.h>
 
 #define PAGE_SHIFT 12
@@ -217,8 +219,42 @@  static int reset_flow_steering(void)
 
 static int configure_headersplit(bool on)
 {
-	return run_command("sudo ethtool -G %s tcp-data-split %s >&2", ifname,
-			   on ? "on" : "off");
+	struct ethtool_rings_set_req *req;
+	struct ynl_error yerr;
+	struct ynl_sock *ys;
+	int ret;
+
+	ys = ynl_sock_create(&ynl_ethtool_family, &yerr);
+	if (!ys) {
+		fprintf(stderr, "YNL: %s\n", yerr.msg);
+		return -1;
+	}
+
+	req = ethtool_rings_set_req_alloc();
+	ethtool_rings_set_req_set_header_dev_index(req, ifindex);
+	ethtool_rings_set_req_set_tcp_data_split(req, on ? 2 : 0);
+	ret = ethtool_rings_set(ys, req);
+	if (ret < 0)
+		fprintf(stderr, "YNL failed: %s\n", ys->err.msg);
+	ethtool_rings_set_req_free(req);
+
+	{
+		struct ethtool_rings_get_req *req;
+		struct ethtool_rings_get_rsp *rsp;
+
+		req = ethtool_rings_get_req_alloc();
+		ethtool_rings_get_req_set_header_dev_index(req, ifindex);
+		rsp = ethtool_rings_get(ys, req);
+		ethtool_rings_get_req_free(req);
+		if (rsp)
+			fprintf(stderr, "TCP header split: %d\n",
+				rsp->tcp_data_split);
+		ethtool_rings_get_rsp_free(rsp);
+	}
+
+	ynl_sock_destroy(ys);
+
+	return ret;
 }
 
 static int configure_rss(void)
@@ -354,6 +390,9 @@  int do_server(struct memory_buffer *mem)
 	if (reset_flow_steering())
 		error(1, 0, "Failed to reset flow steering\n");
 
+	if (configure_headersplit(1))
+		error(1, 0, "Failed to enable TCP header split\n");
+
 	/* Configure RSS to divert all traffic from our devmem queues */
 	if (configure_rss())
 		error(1, 0, "Failed to configure rss\n");