From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Felix Fietkau <nbd@nbd.name>
Cc: netfilter-devel@vger.kernel.org, netdev@vger.kernel.org,
Jo-Philipp Wich <jo@mein.io>
Subject: Re: [RFC] netfilter: nf_tables: ignore errors on flowtable device hw offload setup
Date: Fri, 13 May 2022 09:49:51 +0200 [thread overview]
Message-ID: <Yn4NnwAkoVryQtCK@salvia> (raw)
In-Reply-To: <20220510202739.67068-1-nbd@nbd.name>
Hi,
On Tue, May 10, 2022 at 10:27:39PM +0200, Felix Fietkau wrote:
> In many cases, it's not easily possible for user space to know, which
> devices properly support hardware offload.
Then, it is a matter of extending the netlink interface to expose this
feature? Probably add a FLOW_BLOCK_PROBE or similar which allow to
consult if this feature is available?
> Even if a device supports hardware flow offload, it is not
> guaranteed that it will actually be able to handle the flows for
> which hardware offload is requested.
When might this happen?
> Ignoring errors on the FLOW_BLOCK_BIND makes it a lot easier to set up
> configurations that use hardware offload where possible and gracefully
> fall back to software offload for everything else.
I understand this might be useful from userspace perspective, because
forcing the user to re-try is silly.
However, on the other hand, the user should have some way to know from
the control plane that the feature (hardware offload) that they
request is not available for their setup.
> Cc: Jo-Philipp Wich <jo@mein.io>
> Signed-off-by: Felix Fietkau <nbd@nbd.name>
> ---
> net/netfilter/nf_tables_api.c | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
> index 16c3a39689f4..9d4528f0aa12 100644
> --- a/net/netfilter/nf_tables_api.c
> +++ b/net/netfilter/nf_tables_api.c
> @@ -7323,11 +7323,9 @@ static int nft_register_flowtable_net_hooks(struct net *net,
> }
> }
>
> - err = flowtable->data.type->setup(&flowtable->data,
> - hook->ops.dev,
> - FLOW_BLOCK_BIND);
> - if (err < 0)
> - goto err_unregister_net_hooks;
> + flowtable->data.type->setup(&flowtable->data,
> + hook->ops.dev,
> + FLOW_BLOCK_BIND);
>
> err = nf_register_net_hook(net, &hook->ops);
> if (err < 0) {
> --
> 2.36.1
>
next prev parent reply other threads:[~2022-05-13 7:50 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-10 20:27 [RFC] netfilter: nf_tables: ignore errors on flowtable device hw offload setup Felix Fietkau
2022-05-13 7:49 ` Pablo Neira Ayuso [this message]
2022-05-13 8:03 ` Felix Fietkau
2022-05-13 8:15 ` Pablo Neira Ayuso
2022-05-13 9:09 ` Felix Fietkau
2022-05-16 0:57 ` Pablo Neira Ayuso
2022-05-19 15:37 ` Felix Fietkau
2022-05-20 7:50 ` Pablo Neira Ayuso
2022-05-20 18:07 ` Felix Fietkau
2022-05-20 21:47 ` Pablo Neira Ayuso
2022-05-30 16:55 ` Pablo Neira Ayuso
2022-05-30 18:52 ` Felix Fietkau
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=Yn4NnwAkoVryQtCK@salvia \
--to=pablo@netfilter.org \
--cc=jo@mein.io \
--cc=nbd@nbd.name \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
/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).