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 39B1FA0508; Wed, 13 Apr 2022 11:11:48 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 10CB2410E1; Wed, 13 Apr 2022 11:11:48 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 49C6B4068B for ; Wed, 13 Apr 2022 11:11:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1649841106; x=1681377106; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=EinpD8zAbxMdm0kuBSrG7Pz8MjXsHGX8SfDWANwZuHw=; b=aVnbjAN3W/nxjAB0YPU3EQE8cEGV+TxOyL7ZvM63lfesZ9aPk9PkHMNv f0Nc/J3quMdaS2gZ4xjAtPK+ZhR8SucW6oAY/C2v+0L1yU/NzSQln1eDB YS5UYfQUgBki+5j50rD7T2ielFgFwnHPG6m3feMeetcJa6WAZMgidS8Z5 6czJMLOWn0uWcJkCFUypDugPv75dBUJJzN4DdL5i9LHE98HNYQ+TnBpfZ 9btsBuKRTLo36YanwNMVQiFgm6fgsI0TWzFvsaT9RfjbWzAGksSLsmoez N/EvtT9XJWGpUXX7m4XLilLh3d3KMHhg1K0BR2ktd3BmOBxo6/3YsaNKO Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10315"; a="262058324" X-IronPort-AV: E=Sophos;i="5.90,256,1643702400"; d="scan'208";a="262058324" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Apr 2022 02:11:45 -0700 X-IronPort-AV: E=Sophos;i="5.90,256,1643702400"; d="scan'208";a="552122689" Received: from intel-cd-odc-kevin.cd.intel.com ([10.240.178.195]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Apr 2022 02:11:43 -0700 From: Kevin Liu To: dev@dpdk.org Cc: qiming.yang@intel.com, qi.z.zhang@intel.com, stevex.yang@intel.com, Kevin Liu Subject: [PATCH v3 00/22] support full function of DCF Date: Wed, 13 Apr 2022 17:10:08 +0000 Message-Id: <20220413171030.2231163-1-kevinx.liu@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20220413160932.2074781-1-kevinx.liu@intel.com> References: <20220413160932.2074781-1-kevinx.liu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 v3: * remove patch: 1.net/ice/base: add VXLAN support for switch filter 2.net/ice: add VXLAN support for switch filter 3.common/iavf: support flushing rules and reporting DCF id 4.net/ice/base: fix ethertype filter input set 5.net/ice/base: support IPv6 GRE UDP pattern 6.net/ice/base: support new patterns of TCP and UDP 7.net/ice: support new patterns of TCP and UDP 8.net/ice/base: support IPv4 GRE tunnel 9.net/ice: support IPv4 GRE raw pattern type 10.net/ice/base: update Profile ID table for VXLAN 11.net/ice/base: update Protocol ID table to match DVM DDP v2: * remove patch: 1.net/iavf: support checking if device is an MDCF instance 2.net/ice: support MDCF(multi-DCF) instance 3.net/ice/base: support custom DDP buildin recipe 4.net/ice: support buildin recipe configuration 5.net/ice/base: support custom ddp package version 6.net/ice: disable ACL function for MDCF instance Alvin Zhang (7): net/ice: support dcf promisc configuration net/ice: support dcf VLAN filter and offload configuration net/ice: support DCF new VLAN capabilities net/ice: support IPv6 NVGRE tunnel net/ice: support new pattern of IPv4 net/ice: treat unknown package as OS default package net/ice: fix DCF ACL flow engine Dapeng Yu (1): net/ice: enable CVL DCF device reset API Jie Wang (2): net/ice: add ops MTU-SET to dcf net/ice: add ops dev-supported-ptypes-get to dcf Kevin Liu (3): net/ice: support dcf MAC configuration net/ice: add enable/disable queues for DCF large VF net/ice: fix DCF reset Qi Zhang (1): testpmd: force flow flush Robin Zhang (1): net/ice: cleanup Tx buffers Steve Yang (7): net/ice: enable RSS RETA ops for DCF hardware net/ice: enable RSS HASH ops for DCF hardware net/ice: handle virtchnl event message without interrupt net/ice: add DCF request queues function net/ice: negotiate large VF and request more queues net/ice: enable multiple queues configurations for large VF net/ice: enable IRQ mapping configuration for large VF app/test-pmd/config.c | 6 +- drivers/net/ice/base/ice_common.c | 4 +- drivers/net/ice/ice_acl_filter.c | 20 +- drivers/net/ice/ice_dcf.c | 375 ++++++++++- drivers/net/ice/ice_dcf.h | 31 +- drivers/net/ice/ice_dcf_ethdev.c | 925 ++++++++++++++++++++++++++-- drivers/net/ice/ice_dcf_ethdev.h | 14 + drivers/net/ice/ice_dcf_parent.c | 3 + drivers/net/ice/ice_ethdev.c | 13 +- drivers/net/ice/ice_generic_flow.c | 34 +- drivers/net/ice/ice_switch_filter.c | 8 + 11 files changed, 1328 insertions(+), 105 deletions(-) -- 2.33.1