netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Tariq Toukan <tariqt@nvidia.com>
Cc: davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com,
	edumazet@google.com, andrew+netdev@lunn.ch,
	netdev@vger.kernel.org, saeedm@nvidia.com, gal@nvidia.com,
	leonro@nvidia.com, mbloch@nvidia.com, moshe@nvidia.com,
	kliteyn@nvidia.com, vdogaru@nvidia.com
Subject: Re: [PATCH net-next 00/15] mlx5 Hardware Steering part 2
Date: Tue, 07 Jan 2025 00:50:38 +0000	[thread overview]
Message-ID: <173621103849.3663227.12395202026718737005.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20250102181415.1477316-1-tariqt@nvidia.com>

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Thu, 2 Jan 2025 20:13:59 +0200 you wrote:
> Hi,
> 
> Happy new year!
> 
> This series contain HWS code cleanups, enhancements, bug fixes, and
> additions. Note that some of these patches are fixing bugs in existing
> code, but we submit them without 'Fixes' tag to avoid the unnecessary
> burden for stable releases, as HWS still couldn't be enabled.
> 
> [...]

Here is the summary with links:
  - [net-next,01/15] net/mlx5: HWS, remove the use of duplicated structs
    https://git.kernel.org/netdev/net-next/c/020ca0abae4c
  - [net-next,02/15] net/mlx5: HWS, remove implementation of unused FW commands
    https://git.kernel.org/netdev/net-next/c/0647f27a5fac
  - [net-next,03/15] net/mlx5: HWS, denote how refcounts are protected
    https://git.kernel.org/netdev/net-next/c/0a1ef807a403
  - [net-next,04/15] net/mlx5: HWS, simplify allocations as we support only FDB
    https://git.kernel.org/netdev/net-next/c/c86963aae5b8
  - [net-next,05/15] net/mlx5: HWS, add error message on failure to move rules
    https://git.kernel.org/netdev/net-next/c/cc611ab6c712
  - [net-next,06/15] net/mlx5: HWS, change error flow on matcher disconnect
    https://git.kernel.org/netdev/net-next/c/1ce840c7a659
  - [net-next,07/15] net/mlx5: HWS, remove wrong deletion of the miss table list
    https://git.kernel.org/netdev/net-next/c/ad4da6cc36ac
  - [net-next,08/15] net/mlx5: HWS, reduce memory consumption of a matcher struct
    https://git.kernel.org/netdev/net-next/c/05e3c287b987
  - [net-next,09/15] net/mlx5: HWS, num_of_rules counter on matcher should be atomic
    https://git.kernel.org/netdev/net-next/c/61fb92701b8a
  - [net-next,10/15] net/mlx5: HWS, separate SQ that HWS uses from the usual traffic SQs
    https://git.kernel.org/netdev/net-next/c/2f851d1702dc
  - [net-next,11/15] net/mlx5: HWS, fix definer's HWS_SET32 macro for negative offset
    https://git.kernel.org/netdev/net-next/c/be482f1d10da
  - [net-next,12/15] net/mlx5: HWS, handle returned error value in pool alloc
    https://git.kernel.org/netdev/net-next/c/a105db854cf2
  - [net-next,13/15] net/mlx5: HWS, use the right size when writing arg data
    https://git.kernel.org/netdev/net-next/c/85ab9ea32548
  - [net-next,14/15] net/mlx5: HWS, support flow sampler destination
    https://git.kernel.org/netdev/net-next/c/663e61225c40
  - [net-next,15/15] net/mlx5: HWS, set timeout on polling for completion
    https://git.kernel.org/netdev/net-next/c/d74ee6e197a2

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



      parent reply	other threads:[~2025-01-07  0:50 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-02 18:13 [PATCH net-next 00/15] mlx5 Hardware Steering part 2 Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 01/15] net/mlx5: HWS, remove the use of duplicated structs Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 02/15] net/mlx5: HWS, remove implementation of unused FW commands Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 03/15] net/mlx5: HWS, denote how refcounts are protected Tariq Toukan
2025-01-07  0:36   ` Jakub Kicinski
2025-01-07  1:03     ` Yevgeny Kliteynik
2025-01-02 18:14 ` [PATCH net-next 04/15] net/mlx5: HWS, simplify allocations as we support only FDB Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 05/15] net/mlx5: HWS, add error message on failure to move rules Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 06/15] net/mlx5: HWS, change error flow on matcher disconnect Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 07/15] net/mlx5: HWS, remove wrong deletion of the miss table list Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 08/15] net/mlx5: HWS, reduce memory consumption of a matcher struct Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 09/15] net/mlx5: HWS, num_of_rules counter on matcher should be atomic Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 10/15] net/mlx5: HWS, separate SQ that HWS uses from the usual traffic SQs Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 11/15] net/mlx5: HWS, fix definer's HWS_SET32 macro for negative offset Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 12/15] net/mlx5: HWS, handle returned error value in pool alloc Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 13/15] net/mlx5: HWS, use the right size when writing arg data Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 14/15] net/mlx5: HWS, support flow sampler destination Tariq Toukan
2025-01-02 18:14 ` [PATCH net-next 15/15] net/mlx5: HWS, set timeout on polling for completion Tariq Toukan
2025-01-07  0:50 ` patchwork-bot+netdevbpf [this message]

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=173621103849.3663227.12395202026718737005.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=andrew+netdev@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=gal@nvidia.com \
    --cc=kliteyn@nvidia.com \
    --cc=kuba@kernel.org \
    --cc=leonro@nvidia.com \
    --cc=mbloch@nvidia.com \
    --cc=moshe@nvidia.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=saeedm@nvidia.com \
    --cc=tariqt@nvidia.com \
    --cc=vdogaru@nvidia.com \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).