Re: [dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-12 Thread Kevin Traynor
On 09/12/2017 09:16 AM, Bruce Richardson wrote: > On Mon, Sep 11, 2017 at 06:56:39PM +0100, Ferruh Yigit wrote: >> On 9/5/2017 1:04 PM, Markus Theil wrote: >>> The patch which introduced the usage of pci_alloc_irq_vectors >>> came after the patch which switched to non-threaded ISR (f0d1896fa1), >>>

Re: [dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-12 Thread Stephen Hemminger
Why not have an ongoing sliding window policy? So each release it is set On Sep 12, 2017 1:14 AM, "Bruce Richardson" wrote: > On Mon, Sep 11, 2017 at 03:04:01PM -0700, Stephen Hemminger wrote: > > I wonder if it is time to move the bar forward to oldest LTS which is > > 3.2.92 > > > > That seems

Re: [dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-12 Thread Bruce Richardson
On Mon, Sep 11, 2017 at 06:56:39PM +0100, Ferruh Yigit wrote: > On 9/5/2017 1:04 PM, Markus Theil wrote: > > The patch which introduced the usage of pci_alloc_irq_vectors > > came after the patch which switched to non-threaded ISR (f0d1896fa1), > > but did not use non-threaded ISR, if pci_alloc_irq

Re: [dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-12 Thread Bruce Richardson
On Mon, Sep 11, 2017 at 03:04:01PM -0700, Stephen Hemminger wrote: > I wonder if it is time to move the bar forward to oldest LTS which is > 3.2.92 > That seems reasonable. Probably best to do a deprecation notice for it in 17.11 and move the bar in 18.02. /Bruce > > On Sep 11, 2017 10:56 AM,

Re: [dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-11 Thread Stephen Hemminger
I wonder if it is time to move the bar forward to oldest LTS which is 3.2.92 On Sep 11, 2017 10:56 AM, "Ferruh Yigit" wrote: > On 9/5/2017 1:04 PM, Markus Theil wrote: > > The patch which introduced the usage of pci_alloc_irq_vectors > > came after the patch which switched to non-threaded ISR (

Re: [dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-11 Thread Ferruh Yigit
On 9/5/2017 1:04 PM, Markus Theil wrote: > The patch which introduced the usage of pci_alloc_irq_vectors > came after the patch which switched to non-threaded ISR (f0d1896fa1), > but did not use non-threaded ISR, if pci_alloc_irq_vectors > is used. > > Fixes: 99bb58f3adc7 ("igb_uio: switch to new

[dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-05 Thread Markus Theil
The patch which introduced the usage of pci_alloc_irq_vectors came after the patch which switched to non-threaded ISR (f0d1896fa1), but did not use non-threaded ISR, if pci_alloc_irq_vectors is used. Fixes: 99bb58f3adc7 ("igb_uio: switch to new irq function for MSI-X") Cc: nicolas.dich...@6wind.co