From: Joe Damato <jdamato@fastly.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: davem@davemloft.net, netdev@vger.kernel.org, edumazet@google.com,
pabeni@redhat.com, dxu@dxuuu.xyz, ecree.xilinx@gmail.com,
przemyslaw.kitszel@intel.com, donald.hunter@gmail.com,
gal.pressman@linux.dev, tariqt@nvidia.com,
willemdebruijn.kernel@gmail.com
Subject: Re: [PATCH net-next v2 09/12] ethtool: rss: support dumping RSS contexts
Date: Sat, 3 Aug 2024 19:11:28 +0100 [thread overview]
Message-ID: <Zq5y0DvXQpBdOEeA@LQ3V64L9R2> (raw)
In-Reply-To: <20240803042624.970352-10-kuba@kernel.org>
On Fri, Aug 02, 2024 at 09:26:21PM -0700, Jakub Kicinski wrote:
> Now that we track RSS contexts in the core we can easily dump
> them. This is a major introspection improvement, as previously
> the only way to find all contexts would be to try all ids
> (of which there may be 2^32 - 1).
>
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> ---
Thanks for doing this important and extremely useful work. I am
personally very excited to see this data available to userland.
[...]
> diff --git a/net/ethtool/rss.c b/net/ethtool/rss.c
> index 023782ca1230..62e7b6fe605d 100644
> --- a/net/ethtool/rss.c
> +++ b/net/ethtool/rss.c
> @@ -208,6 +208,139 @@ static void rss_cleanup_data(struct ethnl_reply_data *reply_base)
> kfree(data->indir_table);
> }
>
> +struct rss_nl_dump_ctx {
> + unsigned long ifindex;
> + unsigned long ctx_idx;
> +
> + unsigned int one_ifindex;
My apologies: I'm probably just not familiar enough with the code,
but I'm having a hard time understanding what the purpose of
one_ifindex is.
I read both ethnl_rss_dump_start and ethnl_rss_dumpit, but I'm still
not following what this is used for; it'll probably be obvious in
retrospect once you explain it, but I suppose my feedback is that a
comment or something would be really helpful :)
> +};
> +
> +static struct rss_nl_dump_ctx *rss_dump_ctx(struct netlink_callback *cb)
> +{
> + NL_ASSERT_DUMP_CTX_FITS(struct rss_nl_dump_ctx);
> +
> + return (struct rss_nl_dump_ctx *)cb->ctx;
> +}
> +
> +int ethnl_rss_dump_start(struct netlink_callback *cb)
> +{
> + const struct genl_info *info = genl_info_dump(cb);
> + struct rss_nl_dump_ctx *ctx = rss_dump_ctx(cb);
> + struct ethnl_req_info req_info = {};
> + struct nlattr **tb = info->attrs;
> + int ret;
> +
> + /* Filtering by context not supported */
> + if (tb[ETHTOOL_A_RSS_CONTEXT]) {
> + NL_SET_BAD_ATTR(info->extack, tb[ETHTOOL_A_RSS_CONTEXT]);
> + return -EINVAL;
> + }
> +
> + ret = ethnl_parse_header_dev_get(&req_info,
> + tb[ETHTOOL_A_RSS_HEADER],
> + sock_net(cb->skb->sk), cb->extack,
> + false);
> + if (req_info.dev) {
> + ctx->one_ifindex = req_info.dev->ifindex;
> + ctx->ifindex = ctx->one_ifindex;
> + ethnl_parse_header_dev_put(&req_info);
> + req_info.dev = NULL;
> + }
> +
> + return ret;
> +}
> +
> +static int
> +rss_dump_one_ctx(struct sk_buff *skb, struct netlink_callback *cb,
> + struct net_device *dev, u32 rss_context)
> +{
> + const struct genl_info *info = genl_info_dump(cb);
> + struct rss_reply_data data = {};
> + struct rss_req_info req = {};
> + void *ehdr;
> + int ret;
> +
> + req.rss_context = rss_context;
> +
> + ehdr = ethnl_dump_put(skb, cb, ETHTOOL_MSG_RSS_GET_REPLY);
> + if (!ehdr)
> + return -EMSGSIZE;
> +
> + ret = ethnl_fill_reply_header(skb, dev, ETHTOOL_A_RSS_HEADER);
> + if (ret < 0)
> + goto err_cancel;
> +
> + if (!rss_context)
> + ret = rss_prepare_get(&req, dev, &data, info);
> + else
> + ret = rss_prepare_ctx(&req, dev, &data, info);
> + if (ret)
> + goto err_cancel;
> +
> + ret = rss_fill_reply(skb, &req.base, &data.base);
> + if (ret)
> + goto err_cleanup;
> + genlmsg_end(skb, ehdr);
> +
> + rss_cleanup_data(&data.base);
> + return 0;
> +
> +err_cleanup:
> + rss_cleanup_data(&data.base);
> +err_cancel:
> + genlmsg_cancel(skb, ehdr);
> + return ret;
> +}
> +
> +static int
> +rss_dump_one_dev(struct sk_buff *skb, struct netlink_callback *cb,
> + struct net_device *dev)
> +{
> + struct rss_nl_dump_ctx *ctx = rss_dump_ctx(cb);
> + int ret;
> +
> + if (!dev->ethtool_ops->get_rxfh)
> + return 0;
> +
> + if (!ctx->ctx_idx) {
> + ret = rss_dump_one_ctx(skb, cb, dev, 0);
> + if (ret)
> + return ret;
> + ctx->ctx_idx++;
> + }
> +
> + for (; xa_find(&dev->ethtool->rss_ctx, &ctx->ctx_idx,
> + ULONG_MAX, XA_PRESENT); ctx->ctx_idx++) {
> + ret = rss_dump_one_ctx(skb, cb, dev, ctx->ctx_idx);
> + if (ret)
> + return ret;
> + }
> + ctx->ctx_idx = 0;
> +
> + return 0;
> +}
> +
> +int ethnl_rss_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
> +{
> + struct rss_nl_dump_ctx *ctx = rss_dump_ctx(cb);
> + struct net *net = sock_net(skb->sk);
> + struct net_device *dev;
> + int ret = 0;
> +
> + rtnl_lock();
> + for_each_netdev_dump(net, dev, ctx->ifindex) {
> + if (ctx->one_ifindex && ctx->one_ifindex != ctx->ifindex)
> + break;
> +
> + ret = rss_dump_one_dev(skb, cb, dev);
> + if (ret)
> + break;
> + }
> + rtnl_unlock();
> +
> + return ret;
> +}
> +
> const struct ethnl_request_ops ethnl_rss_request_ops = {
> .request_cmd = ETHTOOL_MSG_RSS_GET,
> .reply_cmd = ETHTOOL_MSG_RSS_GET_REPLY,
> --
> 2.45.2
>
next prev parent reply other threads:[~2024-08-03 18:11 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-03 4:26 [PATCH net-next v2 00/12] ethtool: rss: driver tweaks and netlink context dumps Jakub Kicinski
2024-08-03 4:26 ` [PATCH net-next v2 01/12] selftests: drv-net: rss_ctx: add identifier to traffic comments Jakub Kicinski
2024-08-04 6:40 ` Gal Pressman
2024-08-05 21:35 ` Jakub Kicinski
2024-08-03 4:26 ` [PATCH net-next v2 02/12] eth: mvpp2: implement new RSS context API Jakub Kicinski
2024-08-05 11:25 ` Edward Cree
2024-08-05 21:29 ` Jakub Kicinski
2024-08-06 13:28 ` Edward Cree
2024-08-06 14:11 ` Jakub Kicinski
2024-08-03 4:26 ` [PATCH net-next v2 03/12] eth: mlx5: allow disabling queues when RSS contexts exist Jakub Kicinski
2024-08-04 6:36 ` Gal Pressman
2024-08-03 4:26 ` [PATCH net-next v2 04/12] ethtool: make ethtool_ops::cap_rss_ctx_supported optional Jakub Kicinski
2024-08-04 6:46 ` Gal Pressman
2024-08-05 11:34 ` Edward Cree
2024-08-03 4:26 ` [PATCH net-next v2 05/12] eth: remove .cap_rss_ctx_supported from updated drivers Jakub Kicinski
2024-08-04 6:47 ` Gal Pressman
2024-08-05 11:34 ` Edward Cree
2024-08-03 4:26 ` [PATCH net-next v2 06/12] ethtool: rss: don't report key if device doesn't support it Jakub Kicinski
2024-08-05 14:36 ` Edward Cree
2024-08-06 14:07 ` Jakub Kicinski
2024-08-03 4:26 ` [PATCH net-next v2 07/12] ethtool: rss: move the device op invocation out of rss_prepare_data() Jakub Kicinski
2024-08-03 4:26 ` [PATCH net-next v2 08/12] ethtool: rss: report info about additional contexts from XArray Jakub Kicinski
2024-08-06 13:55 ` Edward Cree
2024-08-03 4:26 ` [PATCH net-next v2 09/12] ethtool: rss: support dumping RSS contexts Jakub Kicinski
2024-08-03 18:11 ` Joe Damato [this message]
2024-08-05 21:59 ` Jakub Kicinski
2024-08-06 10:09 ` Joe Damato
2024-08-06 10:44 ` Przemek Kitszel
2024-08-06 13:58 ` Edward Cree
2024-08-06 14:17 ` Jakub Kicinski
2024-08-06 14:24 ` Edward Cree
2024-08-06 15:23 ` Jakub Kicinski
2024-08-03 4:26 ` [PATCH net-next v2 10/12] ethtool: rss: support skipping contexts during dump Jakub Kicinski
2024-08-03 18:18 ` Joe Damato
2024-08-06 14:27 ` Edward Cree
2024-08-03 4:26 ` [PATCH net-next v2 11/12] netlink: specs: decode indirection table as u32 array Jakub Kicinski
2024-08-03 18:24 ` Joe Damato
2024-08-03 4:26 ` [PATCH net-next v2 12/12] selftests: drv-net: rss_ctx: test dumping RSS contexts Jakub Kicinski
2024-08-03 18:40 ` Joe Damato
2024-08-06 16:48 ` Edward Cree
2024-08-06 18:28 ` Jakub Kicinski
2024-08-04 6:08 ` [PATCH net-next v2 00/12] ethtool: rss: driver tweaks and netlink context dumps Gal Pressman
2024-08-05 22:13 ` Jakub Kicinski
2024-08-06 12:22 ` Gal Pressman
2024-08-06 14:20 ` Jakub Kicinski
2024-08-06 15:14 ` Gal Pressman
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=Zq5y0DvXQpBdOEeA@LQ3V64L9R2 \
--to=jdamato@fastly.com \
--cc=davem@davemloft.net \
--cc=donald.hunter@gmail.com \
--cc=dxu@dxuuu.xyz \
--cc=ecree.xilinx@gmail.com \
--cc=edumazet@google.com \
--cc=gal.pressman@linux.dev \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=tariqt@nvidia.com \
--cc=willemdebruijn.kernel@gmail.com \
/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