From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olivier Matz Subject: [PATCH v3 6/8] app/test: new command to dump log types Date: Tue, 4 Apr 2017 18:40:38 +0200 Message-ID: <20170404164040.24132-7-olivier.matz@6wind.com> References: <20170329155323.4760-1-olivier.matz@6wind.com> <20170404164040.24132-1-olivier.matz@6wind.com> Cc: david.marchand@6wind.com, bruce.richardson@intel.com, thomas.monjalon@6wind.com, keith.wiles@intel.com, stephen@networkplumber.org To: dev@dpdk.org Return-path: Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 116F73777 for ; Tue, 4 Apr 2017 18:44:48 +0200 (CEST) In-Reply-To: <20170404164040.24132-1-olivier.matz@6wind.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" Signed-off-by: Olivier Matz --- test/test/commands.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test/commands.c b/test/test/commands.c index 551c81dcf..4097a3310 100644 --- a/test/test/commands.c +++ b/test/test/commands.c @@ -158,13 +158,15 @@ static void cmd_dump_parsed(void *parsed_result, rte_mempool_list_dump(stdout); else if (!strcmp(res->dump, "dump_devargs")) rte_eal_devargs_dump(stdout); + else if (!strcmp(res->dump, "dump_log_types")) + rte_log_dump(stdout); } cmdline_parse_token_string_t cmd_dump_dump = TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump, "dump_physmem#dump_memzone#" "dump_struct_sizes#dump_ring#dump_mempool#" - "dump_devargs"); + "dump_devargs#dump_log_types"); cmdline_parse_inst_t cmd_dump = { .f = cmd_dump_parsed, /* function to call */ -- 2.11.0