Merge branch 'mlx5-next' into wip/leon-for-next
authorLeon Romanovsky <leonro@nvidia.com>
Thu, 16 Jun 2022 17:09:11 +0000 (20:09 +0300)
committerLeon Romanovsky <leonro@nvidia.com>
Thu, 16 Jun 2022 17:09:11 +0000 (20:09 +0300)
commit686141bc02f2d1b668a12d32b5e02c7987228aff
tree125cf7e6363a76c9b18a6b9604297d394bbd9427
parent1a685940e6200e9def6e34bbaa19dd31dc5aeaf8
parentcdcdce948d64139aea1c6dfea4b04f5c8ad2784e
Merge branch 'mlx5-next' into wip/leon-for-next

This merge commit includes shared updates to net-next and rdma-next
for upcoming mlx5 features.

1) Updated HW bits and definitions for upcoming features
 1.1) vport debug counters
 1.2) flow meter
 1.3) Execute ASO action for flow entry
 1.4) enhanced CQE compression

2) Add ICM header-modify-pattern RDMA API

Leon Says
=========

SW steering manipulates packet's header using "modifying header" actions.
Many of these actions do the same operation, but use different data each time.
Currently we create and keep every one of these actions, which use expensive
and limited resources.

Now we introduce a new mechanism - pattern and argument, which splits
a modifying action into two parts:
1. action pattern: contains the operations to be applied on packet's header,
mainly set/add/copy of fields in the packet
2. action data/argument: contains the data to be used by each operation
in the pattern.

This way we reuse same patterns with different arguments to create new
modifying actions, and since many actions share the same operations, we end
up creating a small number of patterns that we keep in a dedicated cache.

These modify header patterns are implemented as new type of ICM memory,
so the following kernel patch series add the support for this new ICM type.
==========

Link: https://lore.kernel.org/all/20220614184028.51548-1-saeed@kernel.org
Signed-off-by: Leon Romanovsky <leon@kernel.org>