From: David Marchand <david.marchand@redhat.com>
To: dev@dpdk.org
Cc: andremue@linux.microsoft.com, Aman Singh <aman.deep.singh@intel.com>
Subject: [PATCH] app/testpmd: fix dump command list for MSVC
Date: Thu, 10 Apr 2025 18:02:36 +0200 [thread overview]
Message-ID: <20250410160237.3067629-1-david.marchand@redhat.com> (raw)
Compiling with MSVC results in warnings like below:
app/test-pmd/cmdline.c(9023): warning C5101: use of preprocessor
directive in function-like macro argument list is undefined behavior
Construct token list at runtime.
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
Note: this is an alternative to
https://patchwork.dpdk.org/project/dpdk/patch/1740414265-12217-6-git-send-email-andremue@linux.microsoft.com/
---
app/test-pmd/cmdline.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index d10709f6bc..b4089d281b 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -9018,6 +9018,12 @@ static void cmd_dump_parsed(void *parsed_result,
static cmdline_parse_token_string_t cmd_dump_dump =
TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
+ "" /* defined at init */);
+
+static void
+cmd_dump_init(void)
+{
+ cmd_dump_dump.string_data.str =
"dump_physmem#"
"dump_memzone#"
"dump_socket_mem#"
@@ -9029,7 +9035,8 @@ static cmdline_parse_token_string_t cmd_dump_dump =
#ifndef RTE_EXEC_ENV_WINDOWS
"dump_trace#"
#endif
- "dump_log_types");
+ "dump_log_types";
+}
static cmdline_parse_inst_t cmd_dump = {
.f = cmd_dump_parsed, /* function to call */
@@ -13961,6 +13968,7 @@ init_cmdline(void)
/* initialize non-constant commands */
cmd_set_fwd_mode_init();
cmd_set_fwd_retry_mode_init();
+ cmd_dump_init();
count = 0;
for (i = 0; builtin_ctx[i] != NULL; i++)
--
2.49.0
next reply other threads:[~2025-04-10 16:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-10 16:02 David Marchand [this message]
2025-04-11 0:05 ` Andre Muezerie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250410160237.3067629-1-david.marchand@redhat.com \
--to=david.marchand@redhat.com \
--cc=aman.deep.singh@intel.com \
--cc=andremue@linux.microsoft.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).