From: "Medvedkin, Vladimir" <vladimir.medvedkin@intel.com>
To: Andre Muezerie <andremue@linux.microsoft.com>
Cc: <dev@dpdk.org>
Subject: Re: [PATCH] app/test-fib: enable test-fib on Windows
Date: Wed, 5 Mar 2025 19:52:32 +0000 [thread overview]
Message-ID: <39562477-1bc5-47e2-a750-92b8a27a5838@intel.com> (raw)
In-Reply-To: <1736028594-15393-1-git-send-email-andremue@linux.microsoft.com>
Acked-by: Vladimir Medvedkin <vladimir.medvedkin@intel.com>
On 04/01/2025 22:09, Andre Muezerie wrote:
> Removed a few includes which were not needed and included
> rte_os_shim.h to handle strtok_r which does not exist on
> Windows with that exact name.
>
> Signed-off-by: Andre Muezerie <andremue@linux.microsoft.com>
> ---
> app/test-fib/main.c | 8 ++++++--
> app/test-fib/meson.build | 6 ------
> 2 files changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/app/test-fib/main.c b/app/test-fib/main.c
> index 6479f48cdf..dd1a6d7297 100644
> --- a/app/test-fib/main.c
> +++ b/app/test-fib/main.c
> @@ -5,8 +5,6 @@
> #include <getopt.h>
> #include <stdlib.h>
> #include <string.h>
> -#include <arpa/inet.h>
> -#include <sys/socket.h>
>
> #include <rte_cycles.h>
> #include <rte_errno.h>
> @@ -15,9 +13,15 @@
> #include <rte_malloc.h>
> #include <rte_lpm.h>
> #include <rte_lpm6.h>
> +#include <rte_os_shim.h>
> #include <rte_fib.h>
> #include <rte_fib6.h>
>
> +#ifndef LINE_MAX
> +/* On Linux this constant is defined in limits.h, but not on Windows */
> +#define LINE_MAX 2048
> +#endif
> +
> #define PRINT_USAGE_START "%s [EAL options] --\n"
>
> #define GET_CB_FIELD(in, fd, base, lim, dlm) do { \
> diff --git a/app/test-fib/meson.build b/app/test-fib/meson.build
> index eb36772cf3..f74ac651c0 100644
> --- a/app/test-fib/meson.build
> +++ b/app/test-fib/meson.build
> @@ -1,11 +1,5 @@
> # SPDX-License-Identifier: BSD-3-Clause
> # Copyright(c) 2019 Intel Corporation
>
> -if is_windows
> - build = false
> - reason = 'not supported on Windows'
> - subdir_done()
> -endif
> -
> sources = files('main.c')
> deps += ['fib', 'lpm', 'net']
--
Regards,
Vladimir
next prev parent reply other threads:[~2025-03-05 19:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-04 22:09 [PATCH] app/test-fib: enable test-fib on Windows Andre Muezerie
2025-03-05 19:52 ` Medvedkin, Vladimir [this message]
2025-06-03 14:33 ` David Marchand
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=39562477-1bc5-47e2-a750-92b8a27a5838@intel.com \
--to=vladimir.medvedkin@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).