From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 52A3B58D6 for ; Mon, 22 Feb 2016 07:32:07 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP; 21 Feb 2016 22:32:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,483,1449561600"; d="scan'208";a="908382819" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 21 Feb 2016 22:32:04 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u1M6W2kv023006; Mon, 22 Feb 2016 14:32:02 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id u1M6VwXN019133; Mon, 22 Feb 2016 14:32:00 +0800 Received: (from hzhan75@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u1M6Vw7i019129; Mon, 22 Feb 2016 14:31:58 +0800 From: Helin Zhang To: dev@dpdk.org Date: Mon, 22 Feb 2016 14:31:54 +0800 Message-Id: <1456122717-19099-1-git-send-email-helin.zhang@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1450665486-8335-1-git-send-email-helin.zhang@intel.com> References: <1450665486-8335-1-git-send-email-helin.zhang@intel.com> Subject: [dpdk-dev] [PATCH v2 0/3] enable extended tag for i40e X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Feb 2016 06:32:07 -0000 It enables 'extended tag' for i40e devices only during its port initialization, which is key for 40G performance. It also deprecates the similar in igb_uio, and eal lib. v2: - Changed the type of return value of i40e_enable_extended_tag() to 'void'. - Fixed the compile warnings. - Kept the sys files as they were, and added ABI change announcement for them. - Moved high performance part of i40e from 'GSG' to a new for .nics'. Helin Zhang (3): i40e: enable extended tag eal: remove pci config of extended tag igb_uio: deprecate sys files config/common_linuxapp | 1 + doc/guides/linux_gsg/enable_func.rst | 47 ---------------- doc/guides/nics/i40e.rst | 76 ++++++++++++++++++++++++++ doc/guides/rel_notes/deprecation.rst | 6 +++ doc/guides/rel_notes/release_16_04.rst | 6 +++ drivers/net/i40e/i40e_ethdev.c | 65 ++++++++++++++++++++-- lib/librte_eal/common/eal_common_pci.c | 7 --- lib/librte_eal/common/include/rte_pci.h | 2 + lib/librte_eal/linuxapp/eal/eal_pci.c | 90 +++---------------------------- lib/librte_eal/linuxapp/igb_uio/igb_uio.c | 72 +++---------------------- 10 files changed, 167 insertions(+), 205 deletions(-) create mode 100644 doc/guides/nics/i40e.rst -- 1.9.3