[PATCH v2] app/testpmd: fix indirect action list parameters parsing
Stephen Hemminger
stephen at networkplumber.org
Thu Nov 9 20:41:37 CET 2023
On Thu, 9 Nov 2023 20:36:37 +0200
Gregory Etelson <getelson at nvidia.com> wrote:
> diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
> index 0d521159e9..397f9bc3eb 100644
> --- a/app/test-pmd/cmdline_flow.c
> +++ b/app/test-pmd/cmdline_flow.c
> @@ -11331,7 +11331,7 @@ parse_indlst_id2ptr(struct context *ctx, const struct token *token,
> struct rte_flow_action *action = ctx->object;
> struct rte_flow_action_indirect_list *action_conf;
> const struct indlst_conf *indlst_conf;
> - uint32_t id;
> + uintptr_t id;
> int ret;
>
> if (!action)
> @@ -11350,7 +11350,8 @@ parse_indlst_id2ptr(struct context *ctx, const struct token *token,
> action_conf->handle = (typeof(action_conf->handle))
> port_action_handle_get_by_id(ctx->port, id);
> if (!action_conf->handle) {
> - printf("no indirect list handle for id %u\n", id);
> + printf("no indirect list handle for id %"PRIu64"\n",
> + id);
On 32 bit platforms uintptr_t is 32 bits.
Uintptr_t is always a typedef for unsigned long so use %lu here instead.
More information about the dev
mailing list