Re: [dpdk-dev] [PATCH v2 8/8] ethdev: Decouple interrupt handling from PCI device

2016-12-20 Thread Shreyansh Jain
On Tuesday 20 December 2016 04:21 PM, Jan Blunck wrote: On Tue, Nov 22, 2016 at 1:57 PM, Shreyansh Jain wrote: On Monday 21 November 2016 10:25 PM, Jan Blunck wrote: The struct rte_intr_handle is an abstraction layer for different types of interrupt mechanisms. It is embedded in the low-level

Re: [dpdk-dev] [PATCH v2 8/8] ethdev: Decouple interrupt handling from PCI device

2016-12-20 Thread Jan Blunck
On Tue, Nov 22, 2016 at 1:57 PM, Shreyansh Jain wrote: > On Monday 21 November 2016 10:25 PM, Jan Blunck wrote: >> >> The struct rte_intr_handle is an abstraction layer for different types of >> interrupt mechanisms. It is embedded in the low-level device (e.g. PCI). >> On allocation of a struct r

[dpdk-dev] [PATCH v2 8/8] ethdev: Decouple interrupt handling from PCI device

2016-11-22 Thread Shreyansh Jain
On Monday 21 November 2016 10:25 PM, Jan Blunck wrote: > The struct rte_intr_handle is an abstraction layer for different types of > interrupt mechanisms. It is embedded in the low-level device (e.g. PCI). > On allocation of a struct rte_eth_dev a reference to the intr_handle > should be stored for

[dpdk-dev] [PATCH v2 8/8] ethdev: Decouple interrupt handling from PCI device

2016-11-21 Thread Jan Blunck
The struct rte_intr_handle is an abstraction layer for different types of interrupt mechanisms. It is embedded in the low-level device (e.g. PCI). On allocation of a struct rte_eth_dev a reference to the intr_handle should be stored for devices supporting interrupts. Signed-off-by: Jan Blunck ---