Commit aa91dbf3 authored by Jakub Kicinski's avatar Jakub Kicinski
Browse files

selftests: hw-net: toeplitz: read the RSS key directly from C



Now that we have YNL support for RSS accessing the RSS info from
C is very easy. Instead of passing the RSS key from Python do it
directly in the C code.

Reviewed-by: default avatarWillem de Bruijn <willemb@google.com>
Link: https://patch.msgid.link/20251121040259.3647749-4-kuba@kernel.org


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 27c512af
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -15,7 +15,6 @@ endif

TEST_GEN_FILES := \
	$(COND_GEN_FILES) \
	toeplitz \
# end of TEST_GEN_FILES

TEST_PROGS = \
@@ -55,7 +54,10 @@ TEST_INCLUDES := \
	#

# YNL files, must be before "include ..lib.mk"
YNL_GEN_FILES := ncdevmem
YNL_GEN_FILES := \
	ncdevmem \
	toeplitz \
# end of YNL_GEN_FILES
TEST_GEN_FILES += $(YNL_GEN_FILES)
TEST_GEN_FILES += $(patsubst %.c,%.o,$(wildcard *.bpf.c))

+40 −1
Original line number Diff line number Diff line
@@ -52,6 +52,9 @@
#include <sys/types.h>
#include <unistd.h>

#include <ynl.h>
#include "ethtool-user.h"

#include "../../../kselftest.h"
#include "../../../net/lib/ksft.h"

@@ -483,6 +486,42 @@ static void parse_rps_bitmap(const char *arg)
			rps_silo_to_cpu[cfg_num_rps_cpus++] = i;
}

static void read_rss_dev_info_ynl(void)
{
	struct ethtool_rss_get_req *req;
	struct ethtool_rss_get_rsp *rsp;
	struct ynl_sock *ys;

	ys = ynl_sock_create(&ynl_ethtool_family, NULL);
	if (!ys)
		error(1, errno, "ynl_sock_create failed");

	req = ethtool_rss_get_req_alloc();
	if (!req)
		error(1, errno, "ethtool_rss_get_req_alloc failed");

	ethtool_rss_get_req_set_header_dev_name(req, cfg_ifname);

	rsp = ethtool_rss_get(ys, req);
	if (!rsp)
		error(1, ys->err.code, "YNL: %s", ys->err.msg);

	if (!rsp->_len.hkey)
		error(1, 0, "RSS key not available for %s", cfg_ifname);

	if (rsp->_len.hkey < TOEPLITZ_KEY_MIN_LEN ||
	    rsp->_len.hkey > TOEPLITZ_KEY_MAX_LEN)
		error(1, 0, "RSS key length %u out of bounds [%u, %u]",
		      rsp->_len.hkey, TOEPLITZ_KEY_MIN_LEN,
		      TOEPLITZ_KEY_MAX_LEN);

	memcpy(toeplitz_key, rsp->hkey, rsp->_len.hkey);

	ethtool_rss_get_rsp_free(rsp);
	ethtool_rss_get_req_free(req);
	ynl_sock_destroy(ys);
}

static void parse_opts(int argc, char **argv)
{
	static struct option long_options[] = {
@@ -551,7 +590,7 @@ static void parse_opts(int argc, char **argv)
	}

	if (!have_toeplitz)
		error(1, 0, "Must supply rss key ('-k')");
		read_rss_dev_info_ynl();

	num_cpus = get_nprocs();
	if (num_cpus > RSS_MAX_CPUS)
+0 −5
Original line number Diff line number Diff line
@@ -156,10 +156,6 @@ def test(cfg, proto_flag, ipver, grp):
                                  "hfunc": rss.get('hfunc'),
                                  "input-xfrm": rss.get('input-xfrm', {})
                                  })
        # Refresh in case changing hfunc changes things.
        rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})

    key = ':'.join(f'{b:02x}' for b in rss["hkey"])

    port = rand_port(socket.SOCK_DGRAM)

@@ -170,7 +166,6 @@ def test(cfg, proto_flag, ipver, grp):
        proto_flag,
        "-d", str(port),
        "-i", cfg.ifname,
        "-k", key,
        "-T", "1000",
        "-s",
        "-v"