From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vipin Varghese Subject: [PATCH v1 2/9] app/procinfo: add compare for new options Date: Tue, 23 Oct 2018 19:27:44 +0530 Message-ID: <20181023135751.21536-2-vipin.varghese@intel.com> References: <20181023135751.21536-1-vipin.varghese@intel.com> Cc: amol.patel@intel.com, sivaprasad.tummala@intel.com, stephen1.byrne@intel.com, michael.j.glynn@intel.com, Vipin Varghese To: dev@dpdk.org, maryam.tahhan@intel.com, reshma.pattan@intel.com Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id A25C71B4F5 for ; Tue, 23 Oct 2018 16:01:43 +0200 (CEST) In-Reply-To: <20181023135751.21536-1-vipin.varghese@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add code for new debug options to compare usage strings and set enable flag. Signed-off-by: Vipin Varghese --- app/proc-info/main.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app/proc-info/main.c b/app/proc-info/main.c index 92854f5ba..5505d3fe3 100644 --- a/app/proc-info/main.c +++ b/app/proc-info/main.c @@ -63,6 +63,18 @@ static uint32_t mem_info; /**< Enable displaying xstat name. */ static uint32_t enable_xstats_name; static char *xstats_name; +/**< Enable port debug. */ +static uint32_t enable_dbg_port; +/**< Enable tm debug. */ +static uint32_t enable_dbg_tm; +/**< Enable crypto debug. */ +static uint32_t enable_dbg_crypto; +/**< Enable ring debug. */ +static uint32_t enable_dbg_ring; +static char *ring_name; +/**< Enable mempool debug. */ +static uint32_t enable_dbg_mempool; +static char *mempool_name; /**< Enable xstats by ids. */ #define MAX_NB_XSTATS_IDS 1024 @@ -247,6 +259,24 @@ proc_info_parse_args(int argc, char **argv) else if (!strncmp(long_option[option_index].name, "xstats-reset", MAX_LONG_OPT_SZ)) reset_xstats = 1; + else if (!strncmp(long_option[option_index].name, + "dbg-port", MAX_LONG_OPT_SZ)) + enable_dbg_port = 1; + else if (!strncmp(long_option[option_index].name, + "dbg-tm", MAX_LONG_OPT_SZ)) + enable_dbg_tm = 1; + else if (!strncmp(long_option[option_index].name, + "dbg-crypto", MAX_LONG_OPT_SZ)) + enable_dbg_crypto = 1; + else if (!strncmp(long_option[option_index].name, + "dbg-ring", MAX_LONG_OPT_SZ)) { + enable_dbg_ring = 1; + ring_name = optarg; + } else if (!strncmp(long_option[option_index].name, + "dbg-mempool", MAX_LONG_OPT_SZ)) { + enable_dbg_mempool = 1; + mempool_name = optarg; + } break; case 1: /* Print xstat single value given by name*/ -- 2.17.1