From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4FD1EA04BB; Tue, 6 Oct 2020 13:49:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1D74B2C28; Tue, 6 Oct 2020 13:49:23 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id D83F21C01 for ; Tue, 6 Oct 2020 13:49:19 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from suanmingm@nvidia.com) with SMTP; 6 Oct 2020 14:49:14 +0300 Received: from nvidia.com (mtbc-r640-04.mtbc.labs.mlnx [10.75.70.9]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 096BnC0K028553; Tue, 6 Oct 2020 14:49:13 +0300 From: Suanming Mou To: viacheslavo@nvidia.com, matan@nvidia.com Cc: rasland@nvidia.com, dev@dpdk.org Date: Tue, 6 Oct 2020 19:48:43 +0800 Message-Id: <1601984948-313027-1-git-send-email-suanmingm@nvidia.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH 00/25] net/mlx5: support multiple-thread flow operations X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch set contains multiple-thread flow operations support for the flow objects. Suanming Mou (10): net/mlx5: use thread safe index pool for flow objects net/mlx5: fix redundant Direct Verbs resources allocate net/mlx5: make header reformat action thread safe net/mlx5: remove unused hash list operations net/mlx5: make Rx queue thread safe net/mlx5: create global jump action net/mlx5: create global default miss action net/mlx5: create global drop action net/mlx5: make meter action thread safe net/mlx5: make VLAN network interface thread safe Xueming Li (15): net/mlx5: use thread specific flow context net/mlx5: reuse flow Id as hairpin Id net/mlx5: indexed pool supports zero size entry net/mlx5: use indexed pool for RSS flow ID net/mlx5: make rte flow list thread safe net/mlx5: support concurrent access for hash list net/mlx5: make flow table cache thread safe net/mlx5: make flow tag list thread safe net/mlx5: make flow modify action list thread safe net/mlx5: make metadata copy flow list thread safe net/mlx5: introduce thread safe linked list cache net/mlx5: make matcher list thread safe net/mlx5: make port ID action cache thread safe net/mlx5: make push VLAN action cache thread safe net/mlx5: remove shared context lock drivers/net/mlx5/linux/mlx5_os.c | 95 ++- drivers/net/mlx5/linux/mlx5_vlan_os.c | 24 +- drivers/net/mlx5/mlx5.c | 268 +----- drivers/net/mlx5/mlx5.h | 54 +- drivers/net/mlx5/mlx5_flow.c | 500 ++++++------ drivers/net/mlx5/mlx5_flow.h | 117 ++- drivers/net/mlx5/mlx5_flow_dv.c | 1450 ++++++++++++++------------------- drivers/net/mlx5/mlx5_flow_meter.c | 72 +- drivers/net/mlx5/mlx5_flow_verbs.c | 78 +- drivers/net/mlx5/mlx5_rxq.c | 234 +++--- drivers/net/mlx5/mlx5_rxtx.h | 20 +- drivers/net/mlx5/mlx5_utils.c | 350 ++++++-- drivers/net/mlx5/mlx5_utils.h | 302 +++++-- 13 files changed, 1837 insertions(+), 1727 deletions(-) -- 1.8.3.1