Re: [dpdk-dev] [PATCH 1/2] eal/windows: add interrupt thread skeleton

2020-09-24 Thread Dmitry Kozlyuk
> Getting an "undefined reference to rte_intr_rx_ctl", guess we need to add a > stub for this. > Otherwise, compiles successfully with both clang and mingw. This is because a patch got merged that also eal_interrupts.c and this stub. I'll rebase and send v2.

Re: [dpdk-dev] [PATCH 1/2] eal/windows: add interrupt thread skeleton

2020-09-24 Thread Narcisa Ana Maria Vasile
On Fri, Sep 11, 2020 at 03:22:06AM +0300, Dmitry Kozlyuk wrote: > Windows interrupt support is based on IO completion ports (IOCP). > Interrupt thread would send the devices requests to notify about > interrupts and then wait for any request completion. Add skeleton code > of this model without any

[dpdk-dev] [PATCH 1/2] eal/windows: add interrupt thread skeleton

2020-09-10 Thread Dmitry Kozlyuk
Windows interrupt support is based on IO completion ports (IOCP). Interrupt thread would send the devices requests to notify about interrupts and then wait for any request completion. Add skeleton code of this model without any hardware support. Another way to wake up the interrupt thread is APC (