From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id CA4B8688E for ; Thu, 12 Nov 2015 17:37:39 +0100 (CET) Received: by wmvv187 with SMTP id v187so42065522wmv.1 for ; Thu, 12 Nov 2015 08:37:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind_com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=Yqvv32Xum7HsJlMyChfcqYzTN20/Rm5APRrWzCSPOP8=; b=XT9ALTNIb0c/JegB/t5R9sSVEy7brEXmQFfGNcXPZnC6iN1EH2vAC5X6ec9vD9JzrZ jF/iD90QLFt/rHlurt89nSz5rI8vwt/jVCGz168Nj5tVFS46LHaSLfiZ2hTLumvoRJ+s sGBtnxi8x33n6FnMW4/rXE4uwtNQnxV0arasaB1/f+E7AWxala/sreGJDeppknKnqy0F OOVwMuZskKplVjDVy2gQ1INMR4vkAHB2ncSIxwhrBt7DCpaxtPfEV6utv+812LyWRN8M iR4im5H5AgZvSpGIZCEkh1w/esRyK8mNq2oIR++VK+MMrC5KiDEwm7BMPUHazTedMtyG uSyg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=Yqvv32Xum7HsJlMyChfcqYzTN20/Rm5APRrWzCSPOP8=; b=Hp+y+oudeTL/0QPbSZYGXcCYj3FdV86hyFpx3xj4Boc0/cdkLthkhBlN9yierw2iKM S1zeSZvPFtPLPAlmFUt/U3IBnNbD8vxkup86qwogkTnqgXmJV4y+KGx1/pJtc8/dkJuF VP6J/Hy9tYVXBpWmtjKLQud+/fmm2GA+cRM9hipfpp8tF0RtyiiOLVYRaVF7jAvXNNVj eENot8QZcZgPsnswDGT4mu/zwStF6E/TYzYq2vJPhwLksvopPzxoEEBt6DQ2Mk9IZaaJ Wv3Ia/mif3jsbXIXo/AyR0qNUuG7HX/uCeFtYh80sHHA/HLFP98fVNS2BKSXhqjlP6bU bDgQ== X-Gm-Message-State: ALoCoQmhcf+UlOUw9Casf9VcziNfkFAx/CD4Cj+pTwoLN0DlvDjZW27YBe+ih4S3VfG2ymaCpJ6k X-Received: by 10.28.88.135 with SMTP id m129mr19487691wmb.67.1447346259658; Thu, 12 Nov 2015 08:37:39 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id jt9sm15300557wjc.24.2015.11.12.08.37.38 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 12 Nov 2015 08:37:38 -0800 (PST) From: Thomas Monjalon To: Harry van Haaren Date: Thu, 12 Nov 2015 17:36:26 +0100 Message-ID: <2845955.0FRLIs54h9@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446819175-31325-1-git-send-email-harry.van.haaren@intel.com> References: <1446819175-31325-1-git-send-email-harry.van.haaren@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 0/3] xstats queue handling X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Nov 2015 16:37:40 -0000 2015-11-06 14:12, Harry van Haaren: > This patchset modifies how queue statistics are presented by > rte_eth_xstats_get() and each PMD's xstats_get(). > > Generic stats from the rte_eth_stats struct are presented by rte, and each > PMD can augment those stats with extra stats that are available (if any). > > Currently ixgbe and i40e are the only NICs supporting queue xstats, and > they have been updated to conform with the new method of presentation. > > > Harry van Haaren (3): > ethdev: xstats generic Q stats refactor > ixgbe: refactor xstats queue handling > i40e: refactor xstats queue handling Applied, thanks