From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v2] ethdev: check number of queues less than RTE_ETHDEV_QUEUE_STAT_CNTRS Date: Mon, 28 Nov 2016 12:13:08 +0100 Message-ID: <7874818.0HvcekTQN4@xps13> References: <1479722378-23959-1-git-send-email-alejandro.lucero@netronome.com> <1480006746.31853.14.camel@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: Alejandro Lucero , Bert van Leeuwen To: Olivier Matz , dev@dpdk.org Return-path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 4B581B6D for ; Mon, 28 Nov 2016 12:13:09 +0100 (CET) Received: by mail-wm0-f53.google.com with SMTP id g23so202006185wme.1 for ; Mon, 28 Nov 2016 03:13:09 -0800 (PST) In-Reply-To: <1480006746.31853.14.camel@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2016-11-24 17:59, Olivier Matz: > Hi, > > On Mon, 2016-11-21 at 09:59 +0000, Alejandro Lucero wrote: > > From: Bert van Leeuwen > > > > Arrays inside rte_eth_stats have size=RTE_ETHDEV_QUEUE_STAT_CNTRS. > > Some devices report more queues than that and this code blindly uses > > the reported number of queues by the device to fill those arrays up. > > This patch fixes the problem using MIN between the reported number of > > queues and RTE_ETHDEV_QUEUE_STAT_CNTRS. > > > > Signed-off-by: Alejandro Lucero > > > > Reviewed-by: Olivier Matz > > > As a next step, I'm wondering if it would be possible to remove > this limitation. We could replace the tables in struct rte_eth_stats > by a pointer to an array allocated dynamically at pmd setup. Yes that's definitely the right way to handle these statistics. > It would break the API, so it should be announced first. I'm thinking > of something like: > > struct rte_eth_generic_stats { > uint64_t ipackets; > uint64_t opackets; > uint64_t ibytes; > uint64_t obytes; > uint64_t imissed; > uint64_t ierrors; > uint64_t oerrors; > uint64_t rx_nombuf > }; > > struct rte_eth_stats { > struct rte_eth_generic_stats port_stats; > struct rte_eth_generic_stats *queue_stats; > }; > > The queue_stats array would always be indexed by queue_id. > The xstats would continue to report the generic stats per-port and > per-queue. > > About the mapping API, either we keep it as-is, or it could > become a driver-specific API. Yes I agree to remove the queue statistics mapping which is very specific. I will send a patch with a deprecation notice to move the mapping API to a driver-specific API. Any objection?