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 838CBA034E; Wed, 9 Feb 2022 03:18:23 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 03737410F3; Wed, 9 Feb 2022 03:18:23 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 8EB704067E for ; Wed, 9 Feb 2022 03:18:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644373100; x=1675909100; h=from:to:subject:date:message-id:references:in-reply-to: content-transfer-encoding:mime-version; bh=RxbjcUKpBtJzvD5FXXbYm7EXlcYStaqL28uTG0j2iUU=; b=S54OILUiSSMgVL+tD/pUKoQrmO6aGIIAmqlb5L3uTl0BB+9ndaX9BZHM hZxKN5+2uN7huR01qm9ZUy7jwU6eeK2egK5HleOlTsc67QtgxK6JPWTWl bkRD6Kr6GWAC8tnv4ZKYurpfxPvWLv6fxNaeiE48J8gjirBhgRxWcdZT6 fSbzHsaANND6S26Gn4DJEu1t14HcdvmbmGcFyVG6KFnWj5Yg1xRydc7qB 0LfltsIAxESre2xjgoQbeaHsCNij8IaMCdafPZJK+Y/dzCtXjqTO2xpCE X6CDWGYMeNpmf0wkuc1I3XGHmegoC9J1enFcvr/H4Fb0RlBsGXH4FBtwR A==; X-IronPort-AV: E=McAfee;i="6200,9189,10252"; a="229072728" X-IronPort-AV: E=Sophos;i="5.88,354,1635231600"; d="scan'208";a="229072728" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Feb 2022 18:18:19 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,354,1635231600"; d="scan'208";a="485037512" Received: from fmsmsx606.amr.corp.intel.com ([10.18.126.86]) by orsmga006.jf.intel.com with ESMTP; 08 Feb 2022 18:18:19 -0800 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by fmsmsx606.amr.corp.intel.com (10.18.126.86) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Tue, 8 Feb 2022 18:18:18 -0800 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX601.ccr.corp.intel.com (10.109.6.141) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Wed, 9 Feb 2022 10:18:16 +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.2308.020; Wed, 9 Feb 2022 10:18:16 +0800 From: "Zhang, Qi Z" To: "Zhang, Yuying" , "dev@dpdk.org" Subject: RE: [PATCH v3 2/2] net/ice: support drop any and steer all to queue Thread-Topic: [PATCH v3 2/2] net/ice: support drop any and steer all to queue Thread-Index: AQHYEopCn25nHG11FEG9Q3VD6sNskayKkUbA Date: Wed, 9 Feb 2022 02:18:16 +0000 Message-ID: References: <20220126155710.911525-1-yuying.zhang@intel.com> <20220126155710.911525-2-yuying.zhang@intel.com> In-Reply-To: <20220126155710.911525-2-yuying.zhang@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.6.200.16 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 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 > -----Original Message----- > From: Zhang, Yuying > Sent: Wednesday, January 26, 2022 11:57 PM > To: dev@dpdk.org; Zhang, Qi Z > Cc: Zhang, Yuying > Subject: [PATCH v3 2/2] net/ice: support drop any and steer all to queue >=20 > This patch supports drop any and steer all to queue in switch filter. Sup= port > new rte_flow pattern any to handle all packets. > The usage is listed below. >=20 > 1. drop any: > flow create 0 ingress pattern any / end actions drop / end All packets > received in port 0 will be dropped. >=20 > 2. steer all to queue: > flow create 0 ingress pattern any / end actions queue index 3 / end All > packets received in port 0 will be steered to queue 3. >=20 > Signed-off-by: Yuying Zhang Acked-by: Qi Zhang Applied to dpdk-next-net-intel. Thanks Qi