From patchwork Tue Jan 14 11:29:40 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Pattan, Reshma" X-Patchwork-Id: 64637 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E05ECA04FD; Tue, 14 Jan 2020 12:29:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8B0991C1E0; Tue, 14 Jan 2020 12:29:52 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 015421C1AE for ; Tue, 14 Jan 2020 12:29:50 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Jan 2020 03:29:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,432,1571727600"; d="scan'208";a="248238581" Received: from silpixa00400214.ir.intel.com (HELO silpixa00400214.ger.corp.intel.com) ([10.237.222.119]) by fmsmga001.fm.intel.com with ESMTP; 14 Jan 2020 03:29:48 -0800 From: Reshma Pattan To: dev@dpdk.org Cc: Reshma Pattan Date: Tue, 14 Jan 2020 11:29:40 +0000 Message-Id: <20200114112945.39375-1-reshma.pattan@intel.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 0/5] net/ixgbe: improvements to ixgbe driver 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 does below ixgbe driver code improvements. 1)Removed usage of CONFIG_RTE_IXGBE_INC_VECTOR and used architectures specific flags instead. 2)Removed weak symbols from the stub functions for ppc architecture. 3)Removed duplicate function declarations. 4)Added ixgbe arm vector file for messon build. 5)Added missing stubs for ppc architecture. Signed-off-by: Reshma Pattan Reshma Pattan (5): net/ixgbe: remove ixgbe vector config flag net/ixgbe: remove weak symbols in ixgbe rxtx net/ixgbe: remove duplicate function declaration net/ixgbe: add missing stubs for ppc net/ixgbe: add arm vector support in meson config/common_base | 1 - doc/guides/nics/ixgbe.rst | 1 - drivers/net/ixgbe/Makefile | 6 ++--- drivers/net/ixgbe/ixgbe_rxtx.c | 49 ++++++++++++++++++++-------------- drivers/net/ixgbe/ixgbe_rxtx.h | 7 ++--- drivers/net/ixgbe/meson.build | 3 ++- 6 files changed, 36 insertions(+), 31 deletions(-) Acked-by: Xiaolong Ye