From patchwork Tue Jan 12 08:12:59 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wang, Haiyue" X-Patchwork-Id: 86386 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 07A5EA04B5; Tue, 12 Jan 2021 09:28:42 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E25CE140D44; Tue, 12 Jan 2021 09:28:41 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id ADB19140D43 for ; Tue, 12 Jan 2021 09:28:40 +0100 (CET) IronPort-SDR: Whk+K7nKkUHJALkkfBzM/G2LOR8OvuaMIK2Y7x9AD/xynHzEGWSjK2SH8ExsTFigXjUgG23hV2 R0O1TLSeXMvw== X-IronPort-AV: E=McAfee;i="6000,8403,9861"; a="262788590" X-IronPort-AV: E=Sophos;i="5.79,340,1602572400"; d="scan'208";a="262788590" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jan 2021 00:28:39 -0800 IronPort-SDR: 95GmJEtvgqHURNNJz9yjPgRu7iiGB+wR4vqbvXnSJO5HnOZAvqwIE0vk3bFLHysb7+Gm7ZkmmA 0IKdsJHe6AOQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,340,1602572400"; d="scan'208";a="464443596" Received: from npg-dpdk-haiyue-3.sh.intel.com ([10.67.118.237]) by fmsmga001.fm.intel.com with ESMTP; 12 Jan 2021 00:28:38 -0800 From: Haiyue Wang To: dev@dpdk.org Cc: qiming.yang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com, qi.z.zhang@intel.com, qi.fu@intel.com, Haiyue Wang Date: Tue, 12 Jan 2021 16:12:59 +0800 Message-Id: <20210112081302.87715-1-haiyue.wang@intel.com> X-Mailer: git-send-email 2.30.0 In-Reply-To: <20201214071155.98764-1-haiyue.wang@intel.com> References: <20201214071155.98764-1-haiyue.wang@intel.com> MIME-Version: 1.0 Subject: [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" 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. Haiyue Wang (3): net/iavf: support Ethernet CRC strip disable net/ice: add the DCF VLAN handling net/iavf: implement new VLAN capability handling 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 Acked-by: Qi Zhang