From patchwork Mon Mar 25 19:22:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yongseok Koh X-Patchwork-Id: 51663 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0262637B0; Mon, 25 Mar 2019 20:22:54 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 0E16F2BF4 for ; Mon, 25 Mar 2019 20:22:46 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 25 Mar 2019 21:22:43 +0200 Received: from scfae-sc-2.mti.labs.mlnx (scfae-sc-2.mti.labs.mlnx [10.101.0.96]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x2PJMfrD027389; Mon, 25 Mar 2019 21:22:42 +0200 From: Yongseok Koh To: shahafs@mellanox.com Cc: dev@dpdk.org Date: Mon, 25 Mar 2019 12:22:32 -0700 Message-Id: <20190325192238.20940-1-yskoh@mellanox.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190307074151.18815-1-yskoh@mellanox.com> References: <20190307074151.18815-1-yskoh@mellanox.com> Subject: [dpdk-dev] [PATCH v2 0/6] net/mlx: enable secondary process to register DMA memory 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" RFC: https://mails.dpdk.org/archives/dev/2019-March/125517.html v2: * add more sanity check for eth_dev and return value from IPC request. * complement commit messages * add MLX5_MP_REQ_TIMEOUT_SEC * keep acked-by: Shahaf Shuler Yongseok Koh (6): net/mlx: remove debug messages on datapath net/mlx5: fix external memory registration net/mlx5: add control of excessive memory pinning by kernel net/mlx5: enable secondary process to register DMA memory net/mlx4: add control of excessive memory pinning by kernel net/mlx4: enable secondary process to register DMA memory doc/guides/nics/mlx4.rst | 12 +++- doc/guides/nics/mlx5.rst | 17 +++++- drivers/net/mlx4/mlx4.c | 11 +++- drivers/net/mlx4/mlx4.h | 11 ++++ drivers/net/mlx4/mlx4_mp.c | 50 +++++++++++++++++ drivers/net/mlx4/mlx4_mr.c | 119 +++++++++++++++++++++++++++++++++------- drivers/net/mlx4/mlx4_mr.h | 2 + drivers/net/mlx5/mlx5.c | 7 +++ drivers/net/mlx5/mlx5.h | 8 +++ drivers/net/mlx5/mlx5_mp.c | 50 +++++++++++++++++ drivers/net/mlx5/mlx5_mr.c | 133 +++++++++++++++++++++++++++++++++++++-------- drivers/net/mlx5/mlx5_mr.h | 2 + 12 files changed, 375 insertions(+), 47 deletions(-)