[PATCH v7 01/23] net: Introduce direct data placement tcp offload
Shai Malin
smalin at nvidia.com
Mon Oct 31 11:13:19 PDT 2022
On Fri, 28 Oct 2022 at 18:40, Jakub Kicinski <kuba at kernel.org> wrote:
> On Fri, 28 Oct 2022 10:32:22 +0000 Shai Malin wrote:
> > > It's a big enough feature to add a genetlink or at least a ethtool
> > > command to control. If you add more L5 protos presumably you'll want
> > > to control disable / enable separately for them. Also it'd be cleaner
> > > to expose the full capabilities and report stats via a dedicated API.
> > > Feature bits are not a good fix for complex control-pathy features.
> >
> > With our existing design, we are supporting a bundle of DDP + CRC offload.
> > We don't see the value of letting the user control it individually.
>
> I was talking about the L5 parsing you do. I presume it won't be a huge
> challenge for you to implement support for framing different than NVMe,
> and perhaps even NVMe may have new revisions or things you don't
> support? At which point we're gonna have a bit for each protocol? :S
The existing HW L5 parsing is capable of supporting NVMeTCP offload host
and target.
As part of this series, we introduce the host Rx and following that
we are planning to add support for host Tx, and target (both Rx and Tx).
Supporting a new protocol, or a new NVMe format, is not in our plans at this
point, but the overall ULP design should definitely allow it.
> Then there are stats.
In the patch "net/mlx5e: NVMEoTCP, statistics" we introduced
rx_nvmeotcp_* stats.
We believe it should be collected by the device driver and not
by the ULP layer.
>
> We should have a more expressive API here from the get go. TLS offload
> is clearly lacking in this area.
Sure.
>
> > The capabilities bits were added in order to allow future devices which
> > supported only one of the capabilities to plug into the infrastructure
> > or to allow additional capabilities/protocols.
> >
> > We could expose the caps via ethtool as regular netdev features, it would
> > make everything simpler and cleaner, but the problem is that features
> have
> > run out of bits (all 64 are taken, and we understand the challenge with
> > changing that).
>
> Feature bits should be exclusively for information which needs to be
> accessed on the fast path, on per packet basis. If you have such a need
> then I'm not really opposed to you allocating bits as well, but primary
> feature discovery *for the user* should not be over the feature bits.
Our design does not require information that needs to be accessed on the
fast path. The user will only need to configure it as part of the offload
connection establishment.
We will suggest a new approach.
>
> > We could add a new ethtool command, but on the kernel side it would be
> > quite redundant as we would essentially re-implement feature flag
> processing
> > (comparing string of features names and enabling bits).
> >
> > What do you think?
More information about the Linux-nvme
mailing list