From patchwork Mon Sep 11 16:51:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 127 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 023104256D; Mon, 11 Sep 2023 10:31:33 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D154F402DD; Mon, 11 Sep 2023 10:31:32 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 43E2D402D4 for ; Mon, 11 Sep 2023 10:31:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1694421091; x=1725957091; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ip4PSCdWxrH2R8unwKFPxbxvaL8w6gni6CS7UgQN8Ig=; b=l0KtZpsHMh/bIOcQ614PiuBcbxtRnusB1oD8XtSEtldQgqLUt9ES8N1q 6yr1c3ArMQ2LhXH8IwlmrI7sD5DMNPqYqEPun3uENHwDbokDcH4Os1GjO zvdhAs6VLhLAB8WkmIoEP/hsRqJSqRTdN6bX6oyMrdbC00h/WzDBjhg+1 FBArj+4T/+lWBJcYbkG1xdWAZKOmQhedvjSOzVxhdWxaLZp0ZrsOuSv/I 1AP5kkaknjIyNztmJCntXIlJcKRhnRAKQ2CnLh39xhJCUv86zaUAajIrA a2ytAHbqwyMUFVYZ2qhr/43RKXGcmfrBu+PYpst/Dok4PqAtFEoIxvSU4 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10829"; a="368266747" X-IronPort-AV: E=Sophos;i="6.02,243,1688454000"; d="scan'208";a="368266747" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Sep 2023 01:31:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10829"; a="990011838" X-IronPort-AV: E=Sophos;i="6.02,243,1688454000"; d="scan'208";a="990011838" Received: from dpdk-qzhan15-test02.sh.intel.com ([10.67.115.37]) by fmsmga006.fm.intel.com with ESMTP; 11 Sep 2023 01:31:28 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: zhichaox.zeng@intel.com, dev@dpdk.org, Qi Zhang Subject: [PATCH v2 0/2] refactor rte_flow Date: Mon, 11 Sep 2023 12:51:32 -0400 Message-Id: <20230911165134.3671218-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20230814202616.3346652-1-qi.z.zhang@intel.com> References: <20230814202616.3346652-1-qi.z.zhang@intel.com> MIME-Version: 1.0 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 1. remove pipeline mode 2. apply group to hardware pipeline stage static mapping v2: - fix segment fault when an unintialized engine has been selected. Qi Zhang (2): net/ice: remove pipeline mode net/ice: map group to pipeline stage doc/guides/nics/ice.rst | 19 --- drivers/net/ice/ice_acl_filter.c | 13 +- drivers/net/ice/ice_ethdev.c | 8 - drivers/net/ice/ice_ethdev.h | 4 - drivers/net/ice/ice_fdir_filter.c | 21 +-- drivers/net/ice/ice_generic_flow.c | 252 ++++++---------------------- drivers/net/ice/ice_generic_flow.h | 15 +- drivers/net/ice/ice_hash.c | 19 +-- drivers/net/ice/ice_switch_filter.c | 127 +------------- 9 files changed, 72 insertions(+), 406 deletions(-)