Netdev Archive on lore.kernel.org
help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Saeed Mahameed <saeed@kernel.org>
Cc: davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org,
	kliteyn@nvidia.com, valex@nvidia.com, saeedm@nvidia.com
Subject: Re: [net-next 01/17] net/mlx5: DR, Added support for REMOVE_HEADER packet reformat
Date: Fri, 27 Aug 2021 09:10:27 +0000	[thread overview]
Message-ID: <163005542782.19735.394321879807219573.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20210827005802.236119-2-saeed@kernel.org>

Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Thu, 26 Aug 2021 17:57:46 -0700 you wrote:
> From: Yevgeny Kliteynik <kliteyn@nvidia.com>
> 
> ConnectX supports offloading of various encapsulations and decapsulations
> (e.g. VXLAN), which are performed by 'Packet Reformat' action. Starting
> with ConnectX-6 DX, a new reformat type is supported - REMOVE_HEADER, which
> allows deleting an arbitrary size chunk at the selected position in the packet.
> 
> [...]

Here is the summary with links:
  - [net-next,01/17] net/mlx5: DR, Added support for REMOVE_HEADER packet reformat
    https://git.kernel.org/netdev/net-next/c/0139145fb8d8
  - [net-next,02/17] net/mlx5: DR, Split modify VLAN state to separate pop/push states
    https://git.kernel.org/netdev/net-next/c/f5e22be534e0
  - [net-next,03/17] net/mlx5: DR, Enable VLAN pop on TX and VLAN push on RX
    https://git.kernel.org/netdev/net-next/c/2de40f68cf76
  - [net-next,04/17] net/mlx5: DR, Enable QP retransmission
    https://git.kernel.org/netdev/net-next/c/ec449ed8230c
  - [net-next,05/17] net/mlx5: DR, Improve error flow in actions_build_ste_arr
    https://git.kernel.org/netdev/net-next/c/f35715a65747
  - [net-next,06/17] net/mlx5: DR, Warn and ignore SW steering rule insertion on QP err
    https://git.kernel.org/netdev/net-next/c/d5a84e968f3d
  - [net-next,07/17] net/mlx5: DR, Reduce print level for FT chaining level check
    https://git.kernel.org/netdev/net-next/c/d7d0b2450e93
  - [net-next,08/17] net/mlx5: DR, Support IPv6 matching on flow label for STEv0
    https://git.kernel.org/netdev/net-next/c/0733535d59e1
  - [net-next,09/17] net/mlx5: DR, replace uintN_t with kernel-style types
    https://git.kernel.org/netdev/net-next/c/ae3eddcff7aa
  - [net-next,10/17] net/mlx5: DR, Use FW API when updating FW-owned flow table
    https://git.kernel.org/netdev/net-next/c/a01a43fa16e1
  - [net-next,11/17] net/mlx5: DR, Add ignore_flow_level support for multi-dest flow tables
    https://git.kernel.org/netdev/net-next/c/63b85f49c05a
  - [net-next,12/17] net/mlx5: DR, Skip source port matching on FDB RX domain
    https://git.kernel.org/netdev/net-next/c/990467f8afde
  - [net-next,13/17] net/mlx5: DR, Merge DR_STE_SIZE enums
    https://git.kernel.org/netdev/net-next/c/ab9d1f96120b
  - [net-next,14/17] net/mlx5: DR, Remove HW specific STE type from nic domain
    https://git.kernel.org/netdev/net-next/c/46f2a8ae8a70
  - [net-next,15/17] net/mlx5: DR, Remove rehash ctrl struct from dr_htbl
    https://git.kernel.org/netdev/net-next/c/32c8e3b23020
  - [net-next,16/17] net/mlx5: DR, Improve rule tracking memory consumption
    https://git.kernel.org/netdev/net-next/c/8a015baef50a
  - [net-next,17/17] net/mlx5: DR, Add support for update FTE
    https://git.kernel.org/netdev/net-next/c/a2ebfbb7b181

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



  reply	other threads:[~2021-08-27  9:10 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-27  0:57 [pull request][net-next 00/17] mlx5 updates 2021-08-26 Saeed Mahameed
2021-08-27  0:57 ` [net-next 01/17] net/mlx5: DR, Added support for REMOVE_HEADER packet reformat Saeed Mahameed
2021-08-27  9:10   ` patchwork-bot+netdevbpf [this message]
2021-08-27  0:57 ` [net-next 02/17] net/mlx5: DR, Split modify VLAN state to separate pop/push states Saeed Mahameed
2021-08-27  0:57 ` [net-next 03/17] net/mlx5: DR, Enable VLAN pop on TX and VLAN push on RX Saeed Mahameed
2021-08-27  0:57 ` [net-next 04/17] net/mlx5: DR, Enable QP retransmission Saeed Mahameed
2021-08-27  0:57 ` [net-next 05/17] net/mlx5: DR, Improve error flow in actions_build_ste_arr Saeed Mahameed
2021-08-27  0:57 ` [net-next 06/17] net/mlx5: DR, Warn and ignore SW steering rule insertion on QP err Saeed Mahameed
2021-08-27  0:57 ` [net-next 07/17] net/mlx5: DR, Reduce print level for FT chaining level check Saeed Mahameed
2021-08-27  0:57 ` [net-next 08/17] net/mlx5: DR, Support IPv6 matching on flow label for STEv0 Saeed Mahameed
2021-08-27  0:57 ` [net-next 09/17] net/mlx5: DR, replace uintN_t with kernel-style types Saeed Mahameed
2021-08-27  0:57 ` [net-next 10/17] net/mlx5: DR, Use FW API when updating FW-owned flow table Saeed Mahameed
2021-08-27  0:57 ` [net-next 11/17] net/mlx5: DR, Add ignore_flow_level support for multi-dest flow tables Saeed Mahameed
2021-08-27  0:57 ` [net-next 12/17] net/mlx5: DR, Skip source port matching on FDB RX domain Saeed Mahameed
2021-08-27  0:57 ` [net-next 13/17] net/mlx5: DR, Merge DR_STE_SIZE enums Saeed Mahameed
2021-08-27  0:57 ` [net-next 14/17] net/mlx5: DR, Remove HW specific STE type from nic domain Saeed Mahameed
2021-08-27  0:58 ` [net-next 15/17] net/mlx5: DR, Remove rehash ctrl struct from dr_htbl Saeed Mahameed
2021-08-27  0:58 ` [net-next 16/17] net/mlx5: DR, Improve rule tracking memory consumption Saeed Mahameed
2021-08-27  0:58 ` [net-next 17/17] net/mlx5: DR, Add support for update FTE Saeed Mahameed

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=163005542782.19735.394321879807219573.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=davem@davemloft.net \
    --cc=kliteyn@nvidia.com \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=saeed@kernel.org \
    --cc=saeedm@nvidia.com \
    --cc=valex@nvidia.com \
    --subject='Re: [net-next 01/17] net/mlx5: DR, Added support for REMOVE_HEADER packet reformat' \
    /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

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).