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 851B4A034C; Thu, 22 Dec 2022 04:01:44 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 22A6F40698; Thu, 22 Dec 2022 04:01:44 +0100 (CET) Received: from mail-pl1-f178.google.com (mail-pl1-f178.google.com [209.85.214.178]) by mails.dpdk.org (Postfix) with ESMTP id 54DB1400D7 for ; Thu, 22 Dec 2022 04:01:43 +0100 (CET) Received: by mail-pl1-f178.google.com with SMTP id s7so764447plk.5 for ; Wed, 21 Dec 2022 19:01:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc:subject:date :message-id:reply-to; bh=c4HGHPi//xoH+b4BLDc4m60m1RB6I8UvYzG7msIn9UM=; b=tPWqvyv0OEeJUZq9JDqQPT7Yoe4Wz/eg94DzJrX1iVHzVC4p0+uJjsAATw3fns0X/6 zuLsTg6qdHv7SwQd4dUDRScUPW86FeOeOKINw6Q5pSvrBuDZUjQcC8oqyJPfc+1Xodfn 5gHEIUqP2AXbneWW47vjQ0aNiI+WRMPtYowTqkiGUNDu0S+YJE+OJX+3pmZYdAQWJpMZ m6DTog2Sm0H0RjwnHGICZy4GkE5grSTcb+bs0J6U84h3/v6A1ya25zKdMyqhHbP+uTR0 SxcGm098djR9Te63PSx433qwdUdet6wmtLyVDO6IfWPPC9MV0GDT6+3G/po2uFQ0tSxM 6DpQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=c4HGHPi//xoH+b4BLDc4m60m1RB6I8UvYzG7msIn9UM=; b=a0VTo5TeEvYr8F5nX042Ll6LNZAk/LE5/VSiHfWiaHK/SWh5hlzMJkmpbld2guzOra 0R8FFiyCV6qmBYPZbZpc26hV3LLBLxAtEHwnN4ybKDEBr+LjPtjV1Csssa8zRyvv/w1/ NzTVrt5maYgn/GNhMDEL0VZC4DlmlAzwqlaAIqJT69bCe/sp4/9aUPqotzTI996M1vAs kdXfUwvcxXaLaD3MzXhgFJMWKJGG4x5kvLXdMWaEcWXsbLoG858nuCdKV0ifabVhbzlv 7axlYoiYvnK1/ov8I6W2Y2daYsL80phoNi3AW+RGm+k6QVoR5GFZHlNia+X0Wh5S/d2Q W47w== X-Gm-Message-State: AFqh2komJ/6AOcfjR/A3LGJY/4sB06PbT/hz/Jvcuk9SO1CrTKkuyupr KtFuhJxGTaGCyVfiLf3Bg9Ip3g== X-Google-Smtp-Source: AMrXdXsji3AAW2X1taLTLhOsE456Lf6fKthZsZWYvHQmmXCj3MgrRKW+1GIfhZ87Sd6egSw+TTXg4Q== X-Received: by 2002:a17:903:3013:b0:192:48bb:8f36 with SMTP id o19-20020a170903301300b0019248bb8f36mr3099686pla.47.1671678102395; Wed, 21 Dec 2022 19:01:42 -0800 (PST) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id l10-20020a170903120a00b00186f0f59c85sm12217915plh.235.2022.12.21.19.01.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 21 Dec 2022 19:01:42 -0800 (PST) Date: Wed, 21 Dec 2022 19:01:40 -0800 From: Stephen Hemminger To: Rakesh Kudurumalla Cc: Ori Kam , Thomas Monjalon , "Ferruh Yigit" , Andrew Rybchenko , , Subject: Re: [PATCH 1/3] lib: dpdk spec to skip red for ingress policer Message-ID: <20221221190140.399996e0@hermes.local> In-Reply-To: <20221222013904.692922-1-rkudurumalla@marvell.com> References: <20221222013904.692922-1-rkudurumalla@marvell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 On Thu, 22 Dec 2022 07:09:02 +0530 Rakesh Kudurumalla wrote: > Dropping of packets based on RED can be skipped > with meter action, when RED is configured using > rte_eth_cman_config_set() > > Signed-off-by: Rakesh Kudurumalla Should this be more general and apply to all congestion management options. Assuming the hardware can do something better than RED.