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 AD90C58DF for ; Tue, 23 Feb 2016 10:13:30 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP; 23 Feb 2016 01:13:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,488,1449561600"; d="scan'208";a="909253072" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 23 Feb 2016 01:13:21 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u1N9DIEk004385; Tue, 23 Feb 2016 17:13:18 +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 u1N9DGVl015676; Tue, 23 Feb 2016 17:13:18 +0800 Received: (from zhetao@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u1N9DGjF015672; Tue, 23 Feb 2016 17:13:16 +0800 From: Zhe Tao To: dev@dpdk.org Date: Tue, 23 Feb 2016 17:13:13 +0800 Message-Id: <1456218796-15630-1-git-send-email-zhe.tao@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1453361066-22755-2-git-send-email-zhe.tao@intel.com> References: <1453361066-22755-2-git-send-email-zhe.tao@intel.com> Subject: [dpdk-dev] [PATCH 0/2 v2] i40e: Add floating VEB support 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: Tue, 23 Feb 2016 09:13:31 -0000 This patch-set add the support for floating VEB in i40e. All the VFs VSIs can decide whether to connect to the legacy VEB/VEPA or the floating VEB. When connect to the floating VEB a new floating VEB is created. Now all the VFs need to connect to floating VEB or legacy VEB, cannot connect to both of them. The PF and VMDQ,FD VSIs connect to the old legacy VEB/VEPA. All the VEB/VEPA concepts are not specific for FVL, they are defined in the 802.1Qbg spec. Zhe Tao (2): support floating VEB config Add floating VEB support in i40e doc/guides/rel_notes/release_16_04.rst | 2 + drivers/net/i40e/Makefile | 2 +- drivers/net/i40e/i40e_ethdev.c | 92 ++++++++++++++++++++++-------- drivers/net/i40e/i40e_ethdev.h | 3 + drivers/net/i40e/i40e_pf.c | 10 +++- lib/librte_eal/common/eal_common_options.c | 4 ++ lib/librte_eal/common/eal_internal_cfg.h | 1 + lib/librte_eal/common/eal_options.h | 2 + 8 files changed, 88 insertions(+), 28 deletions(-) V2: Added the release notes and changed commit log. -- 2.1.4