From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 57DD25A84 for ; Tue, 14 Jun 2016 05:38:07 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP; 13 Jun 2016 20:38:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,469,1459839600"; d="scan'208";a="1001351780" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga002.fm.intel.com with ESMTP; 13 Jun 2016 20:38:06 -0700 Received: from fmsmsx113.amr.corp.intel.com (10.18.116.7) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 13 Jun 2016 20:38:06 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by FMSMSX113.amr.corp.intel.com (10.18.116.7) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 13 Jun 2016 20:38:05 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.181]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.230]) with mapi id 14.03.0248.002; Tue, 14 Jun 2016 11:38:03 +0800 From: "Wu, Jingjing" To: "Tao, Zhe" , "dev@dpdk.org" Thread-Topic: [PATCH v10 0/3] i40e: add floating VEB support for i40e Thread-Index: AQHRxUpVpiJcOg5BNk2JG6b9L/B4tZ/oUXzw Date: Tue, 14 Jun 2016 03:38:03 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F80E1554A9@SHSMSX103.ccr.corp.intel.com> References: <1465800350-2024-1-git-send-email-zhe.tao@intel.com> <1465804960-2846-1-git-send-email-zhe.tao@intel.com> In-Reply-To: <1465804960-2846-1-git-send-email-zhe.tao@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNDgyNmI1ZTMtMmY1OC00NTlmLWE3YTItNmVkZmQ2YWMyZDcyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6InJBUkdLXC9scnkrXC93R1BwVlhHXC9Tc25CdlRJWXdwMXV1ZmNacUcrcXRwMWs9In0= x-ctpclassification: CTP_IC x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v10 0/3] 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, 14 Jun 2016 03:38:07 -0000 > -----Original Message----- > From: Tao, Zhe > Sent: Monday, June 13, 2016 4:03 PM > To: dev@dpdk.org > Cc: Tao, Zhe ; Wu, Jingjing > Subject: [PATCH v10 0/3] i40e: add floating VEB support for i40e >=20 > 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. >=20 > All the VEB/VEPA concepts are not specific for FVL, they are defined in t= he > 802.1Qbg spec. >=20 > This floating VEB only take effects on the specific version F/W which new= er > than 5.0. >=20 > Zhe Tao (3): > Support floating VEB config > Add floating VEB support in i40e > Add floating VEB extention support for i40e >=20 > doc/guides/nics/i40e.rst | 25 ++++ > doc/guides/rel_notes/release_16_07.rst | 4 + > drivers/net/i40e/i40e_ethdev.c | 205 +++++++++++++++++++++++++++= ++---- > drivers/net/i40e/i40e_ethdev.h | 9 ++ > drivers/net/i40e/i40e_pf.c | 12 +- > 5 files changed, 232 insertions(+), 23 deletions(-) >=20 > V2: Added the release notes and changed commit log. > V3: Changed the VSI release operation. > V4: Added the FW version check otherwise it will cause the segment fault. > V5: Edited the code for new share code APIs > V6: Changed the floating VEB configuration method > V7: Added global reset for i40e > V8: removed global reset and added floating VEB extension support > V9: Added floating VEB related explanation into commit log > V10: Changed third patch commit log >=20 > -- > 2.1.4 Acked-by: Jingjing Wu