From patchwork Fri Aug 5 22:00:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 114686 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 778DFA00C4; Sat, 6 Aug 2022 00:01:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C2CF242CA5; Sat, 6 Aug 2022 00:00:45 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id CB4594282D for ; Sat, 6 Aug 2022 00:00:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1659736837; x=1691272837; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=9wUCzD8dj32kQOqvOCnQOxf6aETriwatWr/V+vcfz64=; b=bYdpDV3raa/inqTl30W9rrhYSx6AN/6fjdpR5rTovTGEmdkwgmxTEK61 uSr7piwgn00BwoxEO9xAyKgM4AXWkBmJuJ2zCHCCCFpO6ZpFiFCUs0TVc yGwNhyDUONKAcsozGMe4mPhS7k3fpo2K7avDZg/yH+5UuZNE9Vbjzqcup w8PqqHQ+xpEibWGKoGxZFPC7HZNJvdp5Os4qzaIG03DIq2wHLBtfYMGDC A3a8IBhqaBmW3+TU8hhwDk6c18BTXM5wgC1i4/S8vTjcjgylM4unG7sOW zxWPdkiu16cKkQxD263IRU43OiXCzX/J31VS/AGpEYzSPSWojqgFqPC93 g==; X-IronPort-AV: E=McAfee;i="6400,9594,10430"; a="290308827" X-IronPort-AV: E=Sophos;i="5.93,216,1654585200"; d="scan'208";a="290308827" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Aug 2022 15:00:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,217,1654585200"; d="scan'208";a="693137589" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com.) ([10.237.223.157]) by FMSMGA003.fm.intel.com with ESMTP; 05 Aug 2022 15:00:36 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Subject: [PATCH 09/10] examples/pipeline: print the output port packet drop counters Date: Fri, 5 Aug 2022 22:00:28 +0000 Message-Id: <20220805220029.1096212-10-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220805220029.1096212-1-cristian.dumitrescu@intel.com> References: <20220805220029.1096212-1-cristian.dumitrescu@intel.com> MIME-Version: 1.0 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 Print the output port pacet drop statistics counters. Signed-off-by: Cristian Dumitrescu --- examples/pipeline/cli.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/pipeline/cli.c b/examples/pipeline/cli.c index 75c32b9089..2e69698031 100644 --- a/examples/pipeline/cli.c +++ b/examples/pipeline/cli.c @@ -2276,10 +2276,14 @@ cmd_pipeline_stats(char **tokens, out_size, " packets %" PRIu64 " bytes %" PRIu64 + " packets dropped %" PRIu64 + " bytes dropped %" PRIu64 " clone %" PRIu64 " clonerr %" PRIu64 "\n", stats.n_pkts, stats.n_bytes, + stats.n_pkts_drop, + stats.n_bytes_drop, stats.n_pkts_clone, stats.n_pkts_clone_err);