Re: [dpdk-dev] [PATCH v6 9/9] interrupts: extend event list

2021-10-25 Thread David Marchand
On Mon, Oct 25, 2021 at 12:49 PM Dmitry Kozlyuk wrote: > > diff --git a/lib/eal/common/eal_common_interrupts.c > > b/lib/eal/common/eal_common_interrupts.c > > index 3285c4335f..7feb9da8fa 100644 > > --- a/lib/eal/common/eal_common_interrupts.c > > +++ b/lib/eal/common/eal_common_interrupts.c > [

Re: [dpdk-dev] [PATCH v6 9/9] interrupts: extend event list

2021-10-25 Thread Dmitry Kozlyuk
Hi David, With some nits below, Acked-by: Dmitry Kozlyuk 2021-10-24 22:04 (UTC+0200), David Marchand: > From: Harman Kalra > > Dynamically allocating the efds and elist array os intr_handle Typo: "os" -> "of" > structure, based on size provided by user. Eg size can be > MSIX interrupts suppo

[dpdk-dev] [PATCH v6 9/9] interrupts: extend event list

2021-10-24 Thread David Marchand
From: Harman Kalra Dynamically allocating the efds and elist array os intr_handle structure, based on size provided by user. Eg size can be MSIX interrupts supported by a PCI device. Signed-off-by: Harman Kalra Signed-off-by: David Marchand --- Changes since v5: - split from patch5, --- driv