public inbox for netdev@vger.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, pabeni@redhat•com,
	edumazet@google•com, saeedm@nvidia•com, netdev@vger•kernel.org,
	tariqt@nvidia•com
Subject: Re: [PATCH net-next 00/16] mlx5 xsk updates part3 2022-09-30
Date: Sat, 01 Oct 2022 20:40:18 +0000	[thread overview]
Message-ID: <166465681836.29087.4279285983955394531.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20220930162903.62262-1-saeed@kernel.org>

Hello:

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

On Fri, 30 Sep 2022 09:28:47 -0700 you wrote:
> From: Saeed Mahameed <saeedm@nvidia•com>
> 
> The gist of this 4 part series is in this patchset's last patch
> 
> This series contains performance optimizations. XSK starts using the
> batching allocator, and XSK data path gets separated from the regular
> RX, allowing to drop some branches not relevant for non-XSK use cases.
> Some minor optimizations for indirect calls and need_wakeup are also
> included.
> 
> [...]

Here is the summary with links:
  - [net-next,01/16] net/mlx5e: xsk: Use mlx5e_trigger_napi_icosq for XSK wakeup
    https://git.kernel.org/netdev/net-next/c/d54d7194ba48
  - [net-next,02/16] net/mlx5e: xsk: Drop the check for XSK state in mlx5e_xsk_wakeup
    https://git.kernel.org/netdev/net-next/c/8cbcafcee191
  - [net-next,03/16] net/mlx5e: Introduce wqe_index_mask for legacy RQ
    https://git.kernel.org/netdev/net-next/c/a064c609849b
  - [net-next,04/16] net/mlx5e: Make the wqe_index_mask calculation more exact
    https://git.kernel.org/netdev/net-next/c/5758c3145b88
  - [net-next,05/16] net/mlx5e: Use partial batches in legacy RQ
    https://git.kernel.org/netdev/net-next/c/42847fed5552
  - [net-next,06/16] net/mlx5e: xsk: Use partial batches in legacy RQ with XSK
    https://git.kernel.org/netdev/net-next/c/3f5fe0b2e606
  - [net-next,07/16] net/mlx5e: Remove the outer loop when allocating legacy RQ WQEs
    https://git.kernel.org/netdev/net-next/c/0b4822323745
  - [net-next,08/16] net/mlx5e: xsk: Split out WQE allocation for legacy XSK RQ
    https://git.kernel.org/netdev/net-next/c/a2e5ba242c33
  - [net-next,09/16] net/mlx5e: xsk: Use xsk_buff_alloc_batch on legacy RQ
    https://git.kernel.org/netdev/net-next/c/259bbc64367a
  - [net-next,10/16] net/mlx5e: xsk: Use xsk_buff_alloc_batch on striding RQ
    https://git.kernel.org/netdev/net-next/c/cf544517c469
  - [net-next,11/16] net/mlx5e: Use non-XSK page allocator in SHAMPO
    https://git.kernel.org/netdev/net-next/c/132857d9124c
  - [net-next,12/16] net/mlx5e: Call mlx5e_page_release_dynamic directly where possible
    https://git.kernel.org/netdev/net-next/c/96d37d861a09
  - [net-next,13/16] net/mlx5e: Optimize RQ page deallocation
    https://git.kernel.org/netdev/net-next/c/ddb7afeee28b
  - [net-next,14/16] net/mlx5e: xsk: Support XDP metadata on XSK RQs
    https://git.kernel.org/netdev/net-next/c/a752b2edb5c1
  - [net-next,15/16] net/mlx5e: Introduce the mlx5e_flush_rq function
    https://git.kernel.org/netdev/net-next/c/d9ba64deb2f1
  - [net-next,16/16] net/mlx5e: xsk: Use queue indices starting from 0 for XSK queues
    https://git.kernel.org/netdev/net-next/c/3db4c85cde7a

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



      parent reply	other threads:[~2022-10-01 20:41 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-30 16:28 [PATCH net-next 00/16] mlx5 xsk updates part3 2022-09-30 Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 01/16] net/mlx5e: xsk: Use mlx5e_trigger_napi_icosq for XSK wakeup Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 02/16] net/mlx5e: xsk: Drop the check for XSK state in mlx5e_xsk_wakeup Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 03/16] net/mlx5e: Introduce wqe_index_mask for legacy RQ Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 04/16] net/mlx5e: Make the wqe_index_mask calculation more exact Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 05/16] net/mlx5e: Use partial batches in legacy RQ Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 06/16] net/mlx5e: xsk: Use partial batches in legacy RQ with XSK Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 07/16] net/mlx5e: Remove the outer loop when allocating legacy RQ WQEs Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 08/16] net/mlx5e: xsk: Split out WQE allocation for legacy XSK RQ Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 09/16] net/mlx5e: xsk: Use xsk_buff_alloc_batch on legacy RQ Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 10/16] net/mlx5e: xsk: Use xsk_buff_alloc_batch on striding RQ Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 11/16] net/mlx5e: Use non-XSK page allocator in SHAMPO Saeed Mahameed
2022-09-30 16:28 ` [PATCH net-next 12/16] net/mlx5e: Call mlx5e_page_release_dynamic directly where possible Saeed Mahameed
2022-09-30 16:29 ` [PATCH net-next 13/16] net/mlx5e: Optimize RQ page deallocation Saeed Mahameed
2022-09-30 16:29 ` [PATCH net-next 14/16] net/mlx5e: xsk: Support XDP metadata on XSK RQs Saeed Mahameed
2022-09-30 16:29 ` [PATCH net-next 15/16] net/mlx5e: Introduce the mlx5e_flush_rq function Saeed Mahameed
2022-09-30 16:29 ` [PATCH net-next 16/16] net/mlx5e: xsk: Use queue indices starting from 0 for XSK queues Saeed Mahameed
2022-10-01 20:40 ` 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=166465681836.29087.4279285983955394531.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel$(echo .)org \
    --cc=davem@davemloft$(echo .)net \
    --cc=edumazet@google$(echo .)com \
    --cc=kuba@kernel$(echo .)org \
    --cc=netdev@vger$(echo .)kernel.org \
    --cc=pabeni@redhat$(echo .)com \
    --cc=saeed@kernel$(echo .)org \
    --cc=saeedm@nvidia$(echo .)com \
    --cc=tariqt@nvidia$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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