1. 18 Jul, 2022 20 commits
  2. 17 Jul, 2022 4 commits
  3. 04 Jul, 2022 2 commits
  4. 30 Jun, 2022 10 commits
  5. 24 Jun, 2022 3 commits
  6. 16 Jun, 2022 1 commit
    • Leon Romanovsky's avatar
      Merge branch 'mlx5-next' into wip/leon-for-next · 686141bc
      Leon Romanovsky authored
      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.orgSigned-off-by: default avatarLeon Romanovsky <leon@kernel.org>
      686141bc