From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 88129A04B5; Tue, 12 Jan 2021 09:39:13 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6BC1C140D68; Tue, 12 Jan 2021 09:39:13 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 78660140D60 for ; Tue, 12 Jan 2021 09:39:12 +0100 (CET) IronPort-SDR: KOjqkQR24yoxIdjmhipmnm0wuSTIpqrghrk4b0jypFJAlgFTmhVJE73oKEAFUDL+H1qqVAD1F9 vxlAO3V0wQWQ== X-IronPort-AV: E=McAfee;i="6000,8403,9861"; a="178099386" X-IronPort-AV: E=Sophos;i="5.79,340,1602572400"; d="scan'208";a="178099386" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jan 2021 00:39:10 -0800 IronPort-SDR: 4M0gb8ImK54vrWXjhG/M3UhMYFmBUnTEDoAMXItWmaU09/Dw27G7349ZCTd4gK9Qx8QSK4Vju7 FfPi1vL8M4xg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,340,1602572400"; d="scan'208";a="400098146" Received: from fmsmsx601.amr.corp.intel.com ([10.18.126.81]) by fmsmga002.fm.intel.com with ESMTP; 12 Jan 2021 00:39:10 -0800 Received: from shsmsx605.ccr.corp.intel.com (10.109.6.215) by fmsmsx601.amr.corp.intel.com (10.18.126.81) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Tue, 12 Jan 2021 00:39:08 -0800 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX605.ccr.corp.intel.com (10.109.6.215) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Tue, 12 Jan 2021 16:39:06 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.1713.004; Tue, 12 Jan 2021 16:39:06 +0800 From: "Zhang, Qi Z" To: "Wang, Haiyue" , "dev@dpdk.org" CC: "Yang, Qiming" , "Wu, Jingjing" , "Xing, Beilei" , "Fu, Qi" Thread-Topic: [PATCH v6 0/3] Add AVF & DCF VLAN feaure Thread-Index: AQHW6LzvN2cthHNb6k2019SvkIeqaaojqzCw Date: Tue, 12 Jan 2021 08:39:06 +0000 Message-ID: <8c2ef445da264dbfad09af2dc93987e0@intel.com> References: <20201214071155.98764-1-haiyue.wang@intel.com> <20210112081302.87715-1-haiyue.wang@intel.com> In-Reply-To: <20210112081302.87715-1-haiyue.wang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v6 0/3] Add AVF & DCF VLAN feaure X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" > -----Original Message----- > From: Wang, Haiyue > Sent: Tuesday, January 12, 2021 4:13 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Wu, Jingjing > ; Xing, Beilei ; Zhang, Qi = Z > ; Fu, Qi ; Wang, Haiyue > > Subject: [PATCH v6 0/3] Add AVF & DCF VLAN feaure >=20 > v6: code clean, and update the commit log. > v5: seperate the QinQ switch filter with another thead. > v4: make code readable for QinQ TPID setting. > v3: code refactor for handing QinQ according to the VC response. >=20 > Haiyue Wang (3): > net/iavf: support Ethernet CRC strip disable > net/ice: add the DCF VLAN handling > net/iavf: implement new VLAN capability handling >=20 > drivers/net/iavf/iavf.h | 6 + > drivers/net/iavf/iavf_ethdev.c | 120 +++++++- > drivers/net/iavf/iavf_rxtx.c | 6 +- > drivers/net/iavf/iavf_vchnl.c | 156 ++++++++++- > drivers/net/ice/ice_dcf.c | 1 + > drivers/net/ice/ice_dcf_ethdev.c | 91 +++++- > drivers/net/ice/ice_dcf_ethdev.h | 24 ++ > drivers/net/ice/ice_dcf_vf_representor.c | 334 +++++++++++++++++++++++ > drivers/net/ice/meson.build | 1 + > 9 files changed, 723 insertions(+), 16 deletions(-) create mode 100644 > drivers/net/ice/ice_dcf_vf_representor.c >=20 > -- > 2.30.0 Acked-by: Qi Zhang Applied to dpdk-next-net-intel. Thanks Qi