From: Slava Ovsiienko <viacheslavo@nvidia.com>
To: "Xueming(Steven) Li" <xuemingl@nvidia.com>,
"dev@dpdk.org" <dev@dpdk.org>
Cc: "Xueming(Steven) Li" <xuemingl@nvidia.com>,
Lior Margalit <lmargalit@nvidia.com>
Subject: Re: [dpdk-dev] [PATCH v2 00/13] net/mlx5: support shared Rx queue
Date: Tue, 19 Oct 2021 08:19:39 +0000 [thread overview]
Message-ID: <DM6PR12MB3753EDEF85C84AC4EDDFE598DFBD9@DM6PR12MB3753.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20211016091214.1831902-1-xuemingl@nvidia.com>
Hi,
For the entire series:
Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
With best regards, Slava
> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Xueming Li
> Sent: Saturday, October 16, 2021 12:12
> To: dev@dpdk.org
> Cc: Xueming(Steven) Li <xuemingl@nvidia.com>; Lior Margalit
> <lmargalit@nvidia.com>
> Subject: [dpdk-dev] [PATCH v2 00/13] net/mlx5: support shared Rx queue
>
> Implemetation of Shared Rx queue.
>
> Depends-on: series-19708 ("ethdev: introduce shared Rx queue")
> Depends-on: series-19698 ("Flow entites behavior on port restart")
>
> v1:
> - initial version
> v2:
> - rebased on latest dependent series
> - fully tested
>
> Viacheslav Ovsiienko (1):
> net/mlx5: add shared Rx queue port datapath support
>
> Xueming Li (12):
> common/mlx5: support receive queue user index
> common/mlx5: support receive memory pool
> net/mlx5: fix Rx queue memory allocation return value
> net/mlx5: clean Rx queue code
> net/mlx5: split multiple packet Rq memory pool
> net/mlx5: split Rx queue
> net/mlx5: move Rx queue reference count
> net/mlx5: move Rx queue hairpin info to private data
> net/mlx5: remove port info from shareable Rx queue
> net/mlx5: move Rx queue DevX resource
> net/mlx5: remove Rx queue data list from device
> net/mlx5: support shared Rx queue
>
> doc/guides/nics/features/mlx5.ini | 1 +
> doc/guides/nics/mlx5.rst | 6 +
> drivers/common/mlx5/mlx5_common_devx.c | 296 +++++++++--
> drivers/common/mlx5/mlx5_common_devx.h | 19 +-
> drivers/common/mlx5/mlx5_devx_cmds.c | 52 ++
> drivers/common/mlx5/mlx5_devx_cmds.h | 16 +
> drivers/common/mlx5/mlx5_prm.h | 93 +++-
> drivers/common/mlx5/version.map | 1 +
> drivers/net/mlx5/linux/mlx5_os.c | 2 +
> drivers/net/mlx5/linux/mlx5_verbs.c | 173 ++++---
> drivers/net/mlx5/mlx5.c | 11 +-
> drivers/net/mlx5/mlx5.h | 17 +-
> drivers/net/mlx5/mlx5_devx.c | 275 +++++-----
> drivers/net/mlx5/mlx5_ethdev.c | 21 +-
> drivers/net/mlx5/mlx5_flow.c | 45 +-
> drivers/net/mlx5/mlx5_mr.c | 7 +-
> drivers/net/mlx5/mlx5_rss.c | 6 +-
> drivers/net/mlx5/mlx5_rx.c | 35 +-
> drivers/net/mlx5/mlx5_rx.h | 46 +-
> drivers/net/mlx5/mlx5_rxq.c | 633 +++++++++++++++--------
> drivers/net/mlx5/mlx5_rxtx.c | 6 +-
> drivers/net/mlx5/mlx5_rxtx_vec.c | 8 +-
> drivers/net/mlx5/mlx5_rxtx_vec_altivec.h | 14 +-
> drivers/net/mlx5/mlx5_rxtx_vec_neon.h | 12 +-
> drivers/net/mlx5/mlx5_rxtx_vec_sse.h | 8 +-
> drivers/net/mlx5/mlx5_stats.c | 9 +-
> drivers/net/mlx5/mlx5_trigger.c | 161 +++---
> drivers/net/mlx5/mlx5_vlan.c | 16 +-
> drivers/regex/mlx5/mlx5_regex_fastpath.c | 2 +-
> 29 files changed, 1350 insertions(+), 641 deletions(-)
>
> --
> 2.33.0
next prev parent reply other threads:[~2021-10-19 8:19 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-26 11:18 [dpdk-dev] [PATCH 00/11] " Xueming Li
2021-09-26 11:18 ` [dpdk-dev] [PATCH 01/11] common/mlx5: support receive queue user index Xueming Li
2021-09-26 11:18 ` [dpdk-dev] [PATCH 02/11] common/mlx5: support receive memory pool Xueming Li
2021-09-26 11:18 ` [dpdk-dev] [PATCH 03/11] net/mlx5: clean Rx queue code Xueming Li
2021-09-26 11:18 ` [dpdk-dev] [PATCH 04/11] net/mlx5: split multiple packet Rq memory pool Xueming Li
2021-09-26 11:18 ` [dpdk-dev] [PATCH 05/11] net/mlx5: split Rx queue Xueming Li
2021-09-26 11:18 ` [dpdk-dev] [PATCH 06/11] net/mlx5: move Rx queue reference count Xueming Li
2021-09-26 11:19 ` [dpdk-dev] [PATCH 07/11] net/mlx5: move Rx queue hairpin info to private data Xueming Li
2021-09-26 11:19 ` [dpdk-dev] [PATCH 08/11] net/mlx5: remove port info from shareable Rx queue Xueming Li
2021-09-26 11:19 ` [dpdk-dev] [PATCH 09/11] net/mlx5: move Rx queue DevX resource Xueming Li
2021-09-26 11:19 ` [dpdk-dev] [PATCH 10/11] net/mlx5: remove Rx queue data list from device Xueming Li
2021-09-26 11:19 ` [dpdk-dev] [PATCH 11/11] net/mlx5: support shared Rx queue Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 00/13] " Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 01/13] common/mlx5: support receive queue user index Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 02/13] common/mlx5: support receive memory pool Xueming Li
2021-10-20 9:32 ` Kinsella, Ray
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 03/13] net/mlx5: fix Rx queue memory allocation return value Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 04/13] net/mlx5: clean Rx queue code Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 05/13] net/mlx5: split multiple packet Rq memory pool Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 06/13] net/mlx5: split Rx queue Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 07/13] net/mlx5: move Rx queue reference count Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 08/13] net/mlx5: move Rx queue hairpin info to private data Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 09/13] net/mlx5: remove port info from shareable Rx queue Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 10/13] net/mlx5: move Rx queue DevX resource Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 11/13] net/mlx5: remove Rx queue data list from device Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 12/13] net/mlx5: support shared Rx queue Xueming Li
2021-10-16 9:12 ` [dpdk-dev] [PATCH v2 13/13] net/mlx5: add shared Rx queue port datapath support Xueming Li
2021-10-19 8:19 ` Slava Ovsiienko [this message]
2021-10-19 8:22 ` [dpdk-dev] [PATCH v2 00/13] net/mlx5: support shared Rx queue Slava Ovsiienko
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=DM6PR12MB3753EDEF85C84AC4EDDFE598DFBD9@DM6PR12MB3753.namprd12.prod.outlook.com \
--to=viacheslavo@nvidia.com \
--cc=dev@dpdk.org \
--cc=lmargalit@nvidia.com \
--cc=xuemingl@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).