From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 2D1ED8E84 for ; Fri, 30 Oct 2015 14:02:04 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 30 Oct 2015 06:02:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,218,1444719600"; d="scan'208";a="823126064" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 30 Oct 2015 06:02:02 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t9UD1wQj030864; Fri, 30 Oct 2015 21:01:58 +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 t9UD1ueo013961; Fri, 30 Oct 2015 21:01:58 +0800 Received: (from zhetao@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t9UD1tG8013957; Fri, 30 Oct 2015 21:01:55 +0800 From: Zhe Tao To: dev@dpdk.org Date: Fri, 30 Oct 2015 21:01:51 +0800 Message-Id: <1446210115-13927-1-git-send-email-zhe.tao@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1446202336-8723-1-git-send-email-zhe.tao@intel.com> References: <1446202336-8723-1-git-send-email-zhe.tao@intel.com> Subject: [dpdk-dev] [PATCH 0/4 v3] i40e: add vector PMD support for FVL 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: Fri, 30 Oct 2015 13:02:05 -0000 This patch set add the vector PMD support for FVL. FVL vPMD works like the way ixgbe does All the functionality is tested PATCH v1: add the vector PMD support for FVL PATCH v2: remove the extra code out of share code change the prefetch position for splitter packets support update the release note PATCH v3: make the new patch set Zhe Tao (4): add vector PMD RX for FVL add vector PMD TX for FVL add vector PMD scatter RX for FVL add RX and TX selection function for FVL config/common_bsdapp | 2 + config/common_linuxapp | 2 + doc/guides/rel_notes/release_2_2.rst | 4 + drivers/net/i40e/Makefile | 1 + drivers/net/i40e/i40e_ethdev.c | 20 +- drivers/net/i40e/i40e_ethdev.h | 6 + drivers/net/i40e/i40e_ethdev_vf.c | 28 +- drivers/net/i40e/i40e_rxtx.c | 227 +++++++++- drivers/net/i40e/i40e_rxtx.h | 40 +- drivers/net/i40e/i40e_rxtx_vec.c | 781 +++++++++++++++++++++++++++++++++++ 10 files changed, 1086 insertions(+), 25 deletions(-) create mode 100644 drivers/net/i40e/i40e_rxtx_vec.c -- 1.9.3