From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xueming Li Subject: [PATCH v5 0/5] net/mlx5 multi-process support Date: Fri, 6 Oct 2017 23:45:47 +0800 Message-ID: <20171006154552.161159-1-xuemingl@mellanox.com> References: <20170824140341.95471-1-xuemingl@mellanox.com> Cc: Xueming Li , dev@dpdk.org To: Nelio Laranjeiro , ferruh.yigit@intel.com Return-path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id E4A811B208 for ; Fri, 6 Oct 2017 17:46:26 +0200 (CEST) In-Reply-To: <20170824140341.95471-1-xuemingl@mellanox.com> 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 patchset enhances Mellanox multi-process by supporting all multi-process examples, also support reading ethdev (x)stats in secondary process. V5: * rebase on latest upstream code, patch 2/5 mlx5_ethdev.c updated. V4: * remove forked secondary mode V3: * add cover letter * add dependency notes V2: * split into multiple patches * support forked secondary process * add secondary process ethdev operations * rebase on latest rdma-core upstream api Xueming Li (5): net/mlx5: change eth device reference for secondary process net/mlx5: install a socket to exchange a file descriptor net/mlx5: allocate verbs object into shared memory net/mlx5: add operations for secondary process net/mlx5: multi-process document update doc/guides/nics/features/mlx5.ini | 1 + doc/guides/nics/mlx5.rst | 4 +- drivers/net/mlx5/Makefile | 1 + drivers/net/mlx5/mlx5.c | 104 ++++++++++++++ drivers/net/mlx5/mlx5.h | 16 ++- drivers/net/mlx5/mlx5_ethdev.c | 112 ++++++++++----- drivers/net/mlx5/mlx5_fdir.c | 2 + drivers/net/mlx5/mlx5_rss.c | 1 + drivers/net/mlx5/mlx5_rxq.c | 1 + drivers/net/mlx5/mlx5_rxtx.h | 2 + drivers/net/mlx5/mlx5_socket.c | 294 ++++++++++++++++++++++++++++++++++++++ drivers/net/mlx5/mlx5_trigger.c | 4 +- drivers/net/mlx5/mlx5_txq.c | 66 +++++++++ 13 files changed, 564 insertions(+), 44 deletions(-) create mode 100644 drivers/net/mlx5/mlx5_socket.c -- 1.8.3.1