From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4DC18A04B6; Mon, 12 Oct 2020 18:55:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F1F1A1D954; Mon, 12 Oct 2020 18:55:28 +0200 (CEST) Received: from mail-pf1-f181.google.com (mail-pf1-f181.google.com [209.85.210.181]) by dpdk.org (Postfix) with ESMTP id 86A801D94E for ; Mon, 12 Oct 2020 18:55:27 +0200 (CEST) Received: by mail-pf1-f181.google.com with SMTP id b26so14045550pff.3 for ; Mon, 12 Oct 2020 09:55:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=4Mb31zg82eECYcN9Egq222aZ7JYZCaYm2Fb++VOyNzw=; b=WgezEliTlMBDiL2X3UypHZKwi/9eTCySabkO1/2+AFurBHIitRe2SWUqLHETv3HGW4 wU1PLfnmGoftJVPqlIqDrs6VXCnV8MKExX0tsdtjWnuDLnjoRHotPLuVuAIdWRi3Nvn4 c3Dqvbv0bjUjKioX8OMfKiqTsprJOtRIkzh1l1r6EkSAYVXYH2ioleMgE7sYBsBQb/Fm 1d3LWVQmlvsPN40qp/mKI5r9EouoBPmlKGk6GFoVgNtPau3vRn0CbUS0c4d9VkLfJlMN vOHZAOKNr/CuJVVrq1KBJUF5YYr3HINfUDAvjGXN1tNd4joCVVXYiGNALaD+QBXty0bP y0aA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=4Mb31zg82eECYcN9Egq222aZ7JYZCaYm2Fb++VOyNzw=; b=GFssiI0iEQ2z9A5s0J1S4dgYUHqVg7uWFzB215ZC8wj8I/QYdAxkx1mfGR6jMfASnp oiqxVIsOsfcJtTwJfZGA68O59ge7QW1NVqNpX0+DBp2xjkXpBJYwFQYJqf0ogy7X2BHH 7x4n8n/uZF7rqixD4AiHlJEhv29NHDLi9Ymge74F9LsBFc4OFmKmNf8Fhkl8fZvYRkHW VMb9KO6vsp/o3qAh+EnyCRA9YHBjcXNpvOGfKPulJG0vgMH+lwMU5S8F2T9YAQoxRB2O GmZatKusdeXUw6qNt2W4yI25LCzQttWdoK/JXrq77buVGU1NFVmVfhWehk1JIhZSlZE3 9WEA== X-Gm-Message-State: AOAM531FhD1JwVeRytBXE6IdsrUuqhMaWJAnbdTL58zvyal3uNT8+97g 5DxeeHcAJtwHgWDnhU75tMx/cw== X-Google-Smtp-Source: ABdhPJyaLFQGjl6HFRg9Qta/vf8Beq4OLS784xGXGE5Sih6XGMK1/ZcMX3xXGSMLApNfHi88BCJ+nQ== X-Received: by 2002:a63:5c42:: with SMTP id n2mr3971255pgm.14.1602521725646; Mon, 12 Oct 2020 09:55:25 -0700 (PDT) Received: from hermes.local (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id e21sm19661407pgi.91.2020.10.12.09.55.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 09:55:25 -0700 (PDT) Date: Mon, 12 Oct 2020 09:55:17 -0700 From: Stephen Hemminger To: Ferruh Yigit Cc: Bruce Richardson , Ray Kinsella , Neil Horman , Thomas Monjalon , Andrew Rybchenko , dev@dpdk.org, techboard@dpdk.org, Min Hu Message-ID: <20201012095517.20e7327f@hermes.local> In-Reply-To: <20201012164602.1965694-2-ferruh.yigit@intel.com> References: <20201012164602.1965694-1-ferruh.yigit@intel.com> <20201012164602.1965694-2-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [dpdk-techboard] [RFC 2/2] doc: announce queue stats moving to xstats X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, 12 Oct 2020 17:46:01 +0100 Ferruh Yigit wrote: > Queue stats will be removed from basic stats to xstats. > > It will be PMDs responsibility to fill queue stats based on number of > queues they have. > > Until all PMDs implement the xstats, a temporary > 'RTE_ETH_DEV_QUEUE_STATS_IN_XSTATS' device flag created. PMDs switched > to the xstats should set this flag to bypass ethdev layer for queue > stats. > > Signed-off-by: Ferruh Yigit Maybe we need to have better API's to query per queue? For example, there is no way to query if queue is started or not.