[dpdk-dev] [PATCH] eal/windows: add stub for rte_intr_free_epoll_fd
David Marchand
david.marchand at redhat.com
Thu Nov 19 16:01:33 CET 2020
On Thu, Nov 19, 2020 at 3:00 PM Tal Shnaiderman <talshn at nvidia.com> wrote:
>
> Linux epoll mechanism is not implemented in Windows.
>
> Add stub similarly to freeBSD.
>
> Signed-off-by: Tal Shnaiderman <talshn at nvidia.com>
> ---
> lib/librte_eal/windows/eal_interrupts.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/lib/librte_eal/windows/eal_interrupts.c b/lib/librte_eal/windows/eal_interrupts.c
> index 6c64a48f34..6f7a1c7acc 100644
> --- a/lib/librte_eal/windows/eal_interrupts.c
> +++ b/lib/librte_eal/windows/eal_interrupts.c
> @@ -105,3 +105,9 @@ eal_intr_thread_schedule(void (*func)(void *arg), void *arg)
>
> return 0;
> }
> +
> +void
> +rte_intr_free_epoll_fd(struct rte_intr_handle *intr_handle)
> +{
> + RTE_SET_USED(intr_handle);
> +}
This will not be of much use if you don't export it in
rte_eal_exports.def, right?
--
David Marchand
More information about the dev
mailing list