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 D3DA7A2EFC for ; Mon, 14 Oct 2019 19:04:40 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B95631C2B3; Mon, 14 Oct 2019 19:04:39 +0200 (CEST) Received: from mail-pl1-f195.google.com (mail-pl1-f195.google.com [209.85.214.195]) by dpdk.org (Postfix) with ESMTP id CB1101C29F for ; Mon, 14 Oct 2019 19:04:38 +0200 (CEST) Received: by mail-pl1-f195.google.com with SMTP id u20so8284177plq.4 for ; Mon, 14 Oct 2019 10:04:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=pk9YmBPyu1ZtUDbLm1RjW9BX/b/khiYFzNwc6JUm3QU=; b=MgrsyRF5xObI/GQ2MKxNWZlz9OQKzmK0CaJctZ8lsyCwmF6Ukqim7R+kFOyXzjG9ml oyqt0NuBWwO4vLO1B2BGeGSnpgREZahv6tCT1O+wRXxz5w6cnZVF67hzRuUcaXHxGr3L YCWiuVqvQKXofHo4pF0dLQ3ClXzEDJaVnXAuH4CR+2mnLGwSywOpZawAwSr4YSvSeZJD Y+ttDuqwZiRHCgPG+4JOipcig2mbw1GEfX8EvM7or9PFXkrBAdsEY/RdsTDYe0RsRERb 5xlHTZvpoc1PJ2h1y50bqtRl6iTB7dmYj/JCecD4p5fO8V8jjQ7ViZxjEht0+hOAhuNb M+EA== 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:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=pk9YmBPyu1ZtUDbLm1RjW9BX/b/khiYFzNwc6JUm3QU=; b=LErd3N2/DlAkxa2oz70hTxo4qi3C1q4TMhvZH9S9GZCLMRM3U9kJPg+8vPBsunGaLF L3bTZXoVZ4l3ynNnyS2O3/fVVFvjSEDJZsbkJbGB5EU7IKBZ6D0Lv1fW+uE6r3KgYcf0 KOOEyskSvgG0B8/Nieq/hknW7xO3cS9VyjCjpB3eSD+X9kya27lf2K9WKnSc4KejrXvw I/dqQzdNDLBs3A+Apw/pWjqheFr6dtENPJsOlKuvfrGSnz3p9SZWFYeFAl9J95spG5pw 3LzgPKZIxQ4KA7F1jfhM7RNva6yOhVyyvi7iz2NdxoS4E+Arpd4JctAEEojlEpGQ+J0Y slrA== X-Gm-Message-State: APjAAAXdfNPFZLW/GD2ghny6L1pbAmMT344pGG/DIelri/sga9qMQCzx g7Y1U1Cdh1HHvkx6bVW/VqqqP3GAW5iheQ== X-Google-Smtp-Source: APXvYqytQM9Qtn5ifUAJqCGKUNuXVqWIhzT/Xi8qJndtblZEwSKNHjZMjCc6tgHXqTop4w14h8Jsvg== X-Received: by 2002:a17:902:7c8a:: with SMTP id y10mr14791783pll.115.1571072677349; Mon, 14 Oct 2019 10:04:37 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id e6sm25882198pfl.146.2019.10.14.10.04.37 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 14 Oct 2019 10:04:37 -0700 (PDT) Date: Mon, 14 Oct 2019 10:04:30 -0700 From: Stephen Hemminger To: dev@dpdk.org Message-ID: <20191014100430.17e40c38@hermes.lan> In-Reply-To: <20190919131729.28681-1-stephen@networkplumber.org> References: <20190811160607.16441-1-stephen@networkplumber.org> <20190919131729.28681-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v5 0/2] failsafe: add 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 Thu, 19 Sep 2019 15:17:27 +0200 Stephen Hemminger wrote: > A useful feature of netvsc PMD is the ability to see how many > packets > were processed through the VF device. This patch set adds a similar > (but more limited) capability to failsafe driver. > > Since failsafe doesn't have top level xstats, this set uses the generic > xstats that exist already as a base then adds the sub-device xstats > to that. > > v5 - fix ethdev map file > v4 - rebase to 19.11 > v3 - rebase to 19.08 > > Stephen Hemminger (2): > ethdev: expose basic xstats for driver use > net/failsafe: implement xstats > > drivers/net/failsafe/failsafe_ops.c | 135 +++++++++++++++++++++++ > lib/librte_ethdev/rte_ethdev.c | 17 ++- > lib/librte_ethdev/rte_ethdev_driver.h | 65 +++++++++++ > lib/librte_ethdev/rte_ethdev_version.map | 5 + > 4 files changed, 213 insertions(+), 9 deletions(-) > Why are these patches still not merged?