From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 01D364C94 for ; Mon, 1 Apr 2019 23:22:29 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 2 Apr 2019 00:22:28 +0300 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 x31LMRNk011783; Tue, 2 Apr 2019 00:22:27 +0300 From: Yongseok Koh To: shahafs@mellanox.com Cc: dev@dpdk.org Date: Mon, 1 Apr 2019 14:22:22 -0700 Message-Id: <20190401212225.26380-1-yskoh@mellanox.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190325193627.19726-1-yskoh@mellanox.com> References: <20190325193627.19726-1-yskoh@mellanox.com> Subject: [dpdk-dev] [PATCH v2 0/3] net/mlx: remove device register remap 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: , X-List-Received-Date: Mon, 01 Apr 2019 21:22:30 -0000 This patchset lifts the requirement of reserving huge virtual address space and remapping device UAR register on to it in order to use the same address between primary and secondary process. v2: * rebase on the latest branch tip * fix a bug Yongseok Koh (3): net/mlx5: fix recursive inclusion of header file net/mlx5: remove device register remap net/mlx4: remove device register remap drivers/net/mlx4/mlx4.c | 274 ++++++++++++++++++++++++------------- drivers/net/mlx4/mlx4.h | 22 ++- drivers/net/mlx4/mlx4_prm.h | 3 +- drivers/net/mlx4/mlx4_rxtx.c | 2 +- drivers/net/mlx4/mlx4_rxtx.h | 3 +- drivers/net/mlx4/mlx4_txq.c | 113 +++++++-------- drivers/net/mlx5/mlx5.c | 262 ++++++++++++++++++++++++----------- drivers/net/mlx5/mlx5.h | 20 ++- drivers/net/mlx5/mlx5_flow.c | 5 +- drivers/net/mlx5/mlx5_flow_dv.c | 3 +- drivers/net/mlx5/mlx5_flow_verbs.c | 5 +- drivers/net/mlx5/mlx5_rxtx.h | 8 +- drivers/net/mlx5/mlx5_trigger.c | 2 +- drivers/net/mlx5/mlx5_txq.c | 96 ++++++------- drivers/net/mlx5/mlx5_vlan.c | 3 +- 15 files changed, 501 insertions(+), 320 deletions(-) -- 2.11.0 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 60B7CA0679 for ; Mon, 1 Apr 2019 23:22:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 872394C99; Mon, 1 Apr 2019 23:22:31 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 01D364C94 for ; Mon, 1 Apr 2019 23:22:29 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 2 Apr 2019 00:22:28 +0300 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 x31LMRNk011783; Tue, 2 Apr 2019 00:22:27 +0300 From: Yongseok Koh To: shahafs@mellanox.com Cc: dev@dpdk.org Date: Mon, 1 Apr 2019 14:22:22 -0700 Message-Id: <20190401212225.26380-1-yskoh@mellanox.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190325193627.19726-1-yskoh@mellanox.com> References: <20190325193627.19726-1-yskoh@mellanox.com> Subject: [dpdk-dev] [PATCH v2 0/3] net/mlx: remove device register remap 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" Content-Type: text/plain; charset="UTF-8" Message-ID: <20190401212222.QYR0FU4Wtc4PcmmmSPCVZCqJagqhQmF3xaPLV3jKOtw@z> This patchset lifts the requirement of reserving huge virtual address space and remapping device UAR register on to it in order to use the same address between primary and secondary process. v2: * rebase on the latest branch tip * fix a bug Yongseok Koh (3): net/mlx5: fix recursive inclusion of header file net/mlx5: remove device register remap net/mlx4: remove device register remap drivers/net/mlx4/mlx4.c | 274 ++++++++++++++++++++++++------------- drivers/net/mlx4/mlx4.h | 22 ++- drivers/net/mlx4/mlx4_prm.h | 3 +- drivers/net/mlx4/mlx4_rxtx.c | 2 +- drivers/net/mlx4/mlx4_rxtx.h | 3 +- drivers/net/mlx4/mlx4_txq.c | 113 +++++++-------- drivers/net/mlx5/mlx5.c | 262 ++++++++++++++++++++++++----------- drivers/net/mlx5/mlx5.h | 20 ++- drivers/net/mlx5/mlx5_flow.c | 5 +- drivers/net/mlx5/mlx5_flow_dv.c | 3 +- drivers/net/mlx5/mlx5_flow_verbs.c | 5 +- drivers/net/mlx5/mlx5_rxtx.h | 8 +- drivers/net/mlx5/mlx5_trigger.c | 2 +- drivers/net/mlx5/mlx5_txq.c | 96 ++++++------- drivers/net/mlx5/mlx5_vlan.c | 3 +- 15 files changed, 501 insertions(+), 320 deletions(-) -- 2.11.0