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, weizhang@nvidia.com, moshe@nvidia.com,
shayd@nvidia.com, jacob.e.keller@intel.com
Subject: Re: [net-next V3 01/15] net/mlx5: Parallelize vhca event handling
Date: Wed, 18 Oct 2023 01:40:26 +0000 [thread overview]
Message-ID: <169759322682.7564.2475141741118387188.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20231014171908.290428-2-saeed@kernel.org>
Hello:
This series was applied to netdev/net-next.git (main)
by Saeed Mahameed <saeedm@nvidia.com>:
On Sat, 14 Oct 2023 10:18:54 -0700 you wrote:
> From: Wei Zhang <weizhang@nvidia.com>
>
> At present, mlx5 driver have a general purpose
> event handler which not only handles vhca event
> but also many other events. This incurs a huge
> bottleneck because the event handler is
> implemented by single threaded workqueue and all
> events are forced to be handled in serial manner
> even though application tries to create multiple
> SFs simultaneously.
>
> [...]
Here is the summary with links:
- [net-next,V3,01/15] net/mlx5: Parallelize vhca event handling
https://git.kernel.org/netdev/net-next/c/3f7f31fff251
- [net-next,V3,02/15] net/mlx5: Redesign SF active work to remove table_lock
https://git.kernel.org/netdev/net-next/c/15fa898aebe5
- [net-next,V3,03/15] net/mlx5: Avoid false positive lockdep warning by adding lock_class_key
https://git.kernel.org/netdev/net-next/c/89d351c2241a
- [net-next,V3,04/15] net/mlx5: Refactor LAG peer device lookout bus logic to mlx5 devcom
https://git.kernel.org/netdev/net-next/c/e534552c92a4
- [net-next,V3,05/15] net/mlx5: Replace global mlx5_intf_lock with HCA devcom component lock
https://git.kernel.org/netdev/net-next/c/b430c1b4f63b
- [net-next,V3,06/15] net/mlx5: Remove unused declaration
https://git.kernel.org/netdev/net-next/c/0d2d6bc7e74f
- [net-next,V3,07/15] net/mlx5: fix config name in Kconfig parameter documentation
https://git.kernel.org/netdev/net-next/c/58cd34772a30
- [net-next,V3,08/15] net/mlx5: Use PTR_ERR_OR_ZERO() to simplify code
https://git.kernel.org/netdev/net-next/c/68e81110fbcf
- [net-next,V3,09/15] net/mlx5e: Use PTR_ERR_OR_ZERO() to simplify code
https://git.kernel.org/netdev/net-next/c/5a37b2882418
- [net-next,V3,10/15] net/mlx5e: Refactor rx_res_init() and rx_res_free() APIs
https://git.kernel.org/netdev/net-next/c/d90ea84375b8
- [net-next,V3,11/15] net/mlx5e: Refactor mlx5e_rss_set_rxfh() and mlx5e_rss_get_rxfh()
https://git.kernel.org/netdev/net-next/c/cae8e6dea279
- [net-next,V3,12/15] net/mlx5e: Refactor mlx5e_rss_init() and mlx5e_rss_free() API's
https://git.kernel.org/netdev/net-next/c/0d806cf9c007
- [net-next,V3,13/15] net/mlx5e: Preparations for supporting larger number of channels
https://git.kernel.org/netdev/net-next/c/74a8dadac17e
- [net-next,V3,14/15] net/mlx5e: Increase max supported channels number to 256
https://git.kernel.org/netdev/net-next/c/6dd6eaf43e8d
- [net-next,V3,15/15] net/mlx5e: Allow IPsec soft/hard limits in bytes
https://git.kernel.org/netdev/net-next/c/627aa13921c3
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2023-10-18 1:40 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-14 17:18 [pull request][net-next V3 00/15] mlx5 updates 2023-10-10 Saeed Mahameed
2023-10-14 17:18 ` [net-next V3 01/15] net/mlx5: Parallelize vhca event handling Saeed Mahameed
2023-10-18 1:40 ` patchwork-bot+netdevbpf [this message]
2023-10-14 17:18 ` [net-next V3 02/15] net/mlx5: Redesign SF active work to remove table_lock Saeed Mahameed
2023-10-14 17:18 ` [net-next V3 03/15] net/mlx5: Avoid false positive lockdep warning by adding lock_class_key Saeed Mahameed
2023-10-14 17:18 ` [net-next V3 04/15] net/mlx5: Refactor LAG peer device lookout bus logic to mlx5 devcom Saeed Mahameed
2023-10-14 17:18 ` [net-next V3 05/15] net/mlx5: Replace global mlx5_intf_lock with HCA devcom component lock Saeed Mahameed
2023-10-14 17:18 ` [net-next V3 06/15] net/mlx5: Remove unused declaration Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 07/15] net/mlx5: fix config name in Kconfig parameter documentation Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 08/15] net/mlx5: Use PTR_ERR_OR_ZERO() to simplify code Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 09/15] net/mlx5e: " Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 10/15] net/mlx5e: Refactor rx_res_init() and rx_res_free() APIs Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 11/15] net/mlx5e: Refactor mlx5e_rss_set_rxfh() and mlx5e_rss_get_rxfh() Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 12/15] net/mlx5e: Refactor mlx5e_rss_init() and mlx5e_rss_free() API's Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 13/15] net/mlx5e: Preparations for supporting larger number of channels Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 14/15] net/mlx5e: Increase max supported channels number to 256 Saeed Mahameed
2023-10-14 17:19 ` [net-next V3 15/15] net/mlx5e: Allow IPsec soft/hard limits in bytes 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=169759322682.7564.2475141741118387188.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jacob.e.keller@intel.com \
--cc=kuba@kernel.org \
--cc=moshe@nvidia.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=saeed@kernel.org \
--cc=saeedm@nvidia.com \
--cc=shayd@nvidia.com \
--cc=tariqt@nvidia.com \
--cc=weizhang@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).