From mboxrd@z Thu Jan 1 00:00:00 1970 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 A78982BB0 for ; Wed, 29 Mar 2017 17:53:11 +0200 (CEST) Received: from glumotte.dev.6wind.com (unknown [10.16.0.195]) by proxy.6wind.com (Postfix) with ESMTP id 1016F26478; Wed, 29 Mar 2017 17:53:06 +0200 (CEST) From: Olivier Matz To: dev@dpdk.org Cc: thomas.monjalon@6wind.com, david.marchand@6wind.com, bruce.richardson@intel.com, keith.wiles@intel.com, stephen@networkplumber.org Date: Wed, 29 Mar 2017 17:53:21 +0200 Message-Id: <20170329155323.4760-7-olivier.matz@6wind.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170329155323.4760-1-olivier.matz@6wind.com> References: <1489765882-30497-1-git-send-email-olivier.matz@6wind.com> <20170329155323.4760-1-olivier.matz@6wind.com> Subject: [dpdk-dev] [PATCH v2 6/8] app/test: new command to dump log types 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: , X-List-Received-Date: Wed, 29 Mar 2017 15:53:11 -0000 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 2df46b054..488dc4187 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