Re: [dpdk-dev] [PATCH v4 22/23] ethdev: Decouple interrupt handling from PCI device

2016-12-22 Thread Jan Blunck
On Thu, Dec 22, 2016 at 4:13 PM, Thomas Monjalon wrote: > 2016-12-21 16:09, 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 t

Re: [dpdk-dev] [PATCH v4 22/23] ethdev: Decouple interrupt handling from PCI device

2016-12-22 Thread Thomas Monjalon
2016-12-21 16:09, 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 inter

[dpdk-dev] [PATCH v4 22/23] ethdev: Decouple interrupt handling from PCI device

2016-12-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 Ack