Merge branch 'sparx5-tc-flower-templates'
authorDavid S. Miller <davem@davemloft.net>
Wed, 8 Mar 2023 13:19:44 +0000 (13:19 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 8 Mar 2023 13:19:44 +0000 (13:19 +0000)
commitb3f4cd07dfb467a2ecaf7f5350333a45a23de551
treec42a157a21901db39c44a5e32a99b2353ad45be6
parent7d8c48917a9576b5fc8871aa4946149b0e4a4927
parente1d597ecbe5c5d7128630d4c9ec27c42018613ed
Merge branch 'sparx5-tc-flower-templates'

Steen Hegelund says:

====================
Add support for TC flower templates in Sparx5

This adds support for the TC template mechanism in the Sparx5 flower filter
implementation.

Templates are as such handled by the TC framework, but when a template is
created (using a chain id) there are by definition no filters on this
chain (an error will be returned if there are any).

If the templates chain id is one that is represented by a VCAP lookup, then
when the template is created, we know that it is safe to use the keys
provided in the template to change the keyset configuration for the (port,
lookup) combination, if this is needed to improve the match on the
template.

The original port keyset configuration is captured in the template state
information which is kept per port, so that when the template is deleted
the port keyset configuration can be restored to its previous setting.

The template also provides the protocol parameter which is the basic
information that is used to find out which port keyset configuration needs
to be changed.

The VCAPs and lookups are slightly different when it comes to which keys,
keysets and protocol are supported and used for selection, so in some
cases a bit of tweaking is needed to find a useful match.  This is done by
e.g. removing a key that prevents the best matching keyset from being
selected.

The debugfs output that is provided for a port allows inspection of the
currently used keyset in each of the VCAPs lookups.  So when a template has
been created the debugfs output allows you to verify if the keyset
configuration has been changed successfully.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>