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 6345CA0508; Thu, 7 Apr 2022 04:57:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0DA5E40689; Thu, 7 Apr 2022 04:57:56 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 8CB454014F for ; Thu, 7 Apr 2022 04:57:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1649300274; x=1680836274; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=ZpKMk2x1iuK9gP2RXOlXqXByB6+niNDE5mLg+YYFn7k=; b=S3EBnqXo6ioSLYbvG/mu2OtiK/C82gBFjot4U42VYa69HHWzm7YsjUzO Fyo7P8XYSglZAmnYbhdH2fXj2ZWdSfB5xK/l6CthtSI305OqcGs1hGHEm R+uHZv6RIxHL3XZkxX+AFZC/H5bLzZJ43zSv8bIoRb15mzQvdE6ZRF1va wGs5v/eHYBmwTqKCBUx16O72u79ZupCJjtmyNZdXOVd9SYKzP/8kLaUbo vgr2s2joUEh36KMHMzU8l4kAsnQjsyCKvCARXLCfcKNEPC1bLhrqvSUju sApGIv467anoN0HiN3/Qm7yizkTTfxD74SnEAjkZXngb+gat7AvrROM0i g==; X-IronPort-AV: E=McAfee;i="6200,9189,10309"; a="243348628" X-IronPort-AV: E=Sophos;i="5.90,241,1643702400"; d="scan'208";a="243348628" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Apr 2022 19:57:53 -0700 X-IronPort-AV: E=Sophos;i="5.90,241,1643702400"; d="scan'208";a="570850313" Received: from intel-cd-odc-kevin.cd.intel.com ([10.240.178.195]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Apr 2022 19:57:51 -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 00/39] support full function of DCF Date: Thu, 7 Apr 2022 10:56:27 +0000 Message-Id: <20220407105706.18889-1-kevinx.liu@intel.com> X-Mailer: git-send-email 2.33.1 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 These functions have been customized and implemented on DPDK-20.11, Now it's time to migrate the function to DPDK-22.07. Alvin Zhang (18): net/ice: support dcf promisc configuration net/ice: support dcf VLAN filter and offload configuration net/ice: support DCF new VLAN capabilities common/iavf: support flushing rules and reporting DCF id net/ice/base: fix ethertype filter input set net/iavf: support checking if device is an MDCF instance net/ice/base: support custom DDP buildin recipe net/ice: support buildin recipe configuration net/ice/base: support IPv6 GRE UDP pattern net/ice: support IPv6 NVGRE tunnel net/ice: support new pattern of IPv4 net/ice/base: support new patterns of TCP and UDP net/ice: support new patterns of TCP and UDP net/ice/base: support IPv4 GRE tunnel net/ice: support IPv4 GRE raw pattern type net/ice/base: support custom ddp package version 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 Junfeng Guo (4): net/ice/base: add VXLAN support for switch filter net/ice: add VXLAN support for switch filter net/ice/base: update Profile ID table for VXLAN net/ice/base: update Protocol ID table to match DVM DDP Kevin Liu (5): net/ice: support dcf MAC configuration net/ice: support MDCF(multi-DCF) instance net/ice: disable ACL function for MDCF instance 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/common/iavf/virtchnl.h | 13 + drivers/net/iavf/iavf_ethdev.c | 2 +- drivers/net/ice/base/ice_common.c | 29 +- drivers/net/ice/base/ice_fdir.c | 3 + drivers/net/ice/base/ice_flex_pipe.c | 41 +- drivers/net/ice/base/ice_flex_pipe.h | 3 +- drivers/net/ice/base/ice_protocol_type.h | 22 + drivers/net/ice/base/ice_switch.c | 626 ++++++++++++- drivers/net/ice/base/ice_switch.h | 12 + drivers/net/ice/base/ice_type.h | 2 + drivers/net/ice/ice_acl_filter.c | 31 +- drivers/net/ice/ice_dcf.c | 398 ++++++++- drivers/net/ice/ice_dcf.h | 34 +- drivers/net/ice/ice_dcf_ethdev.c | 1038 ++++++++++++++++++++-- drivers/net/ice/ice_dcf_ethdev.h | 14 + drivers/net/ice/ice_dcf_parent.c | 11 + drivers/net/ice/ice_ethdev.c | 13 +- drivers/net/ice/ice_generic_flow.c | 91 +- drivers/net/ice/ice_generic_flow.h | 13 + drivers/net/ice/ice_switch_filter.c | 168 +++- 21 files changed, 2385 insertions(+), 185 deletions(-) -- 2.33.1