Re: [dpdk-dev] [PATCH v2 5/9] net/virtio: setup rxq interrupts

2017-01-03 Thread Tan, Jianfeng
> -Original Message- > From: Yuanhan Liu [mailto:yuanhan@linux.intel.com] > Sent: Wednesday, January 4, 2017 3:23 PM > To: Tan, Jianfeng > Cc: dev@dpdk.org; step...@networkplumber.org > Subject: Re: [PATCH v2 5/9] net/virtio: setup rxq interrupts > > On Wed, Jan 04, 2017 at 02:56:50P

Re: [dpdk-dev] [PATCH v2 5/9] net/virtio: setup rxq interrupts

2017-01-03 Thread Yuanhan Liu
On Wed, Jan 04, 2017 at 02:56:50PM +0800, Tan, Jianfeng wrote: > > > On 12/30/2016 2:27 PM, Yuanhan Liu wrote: > >On Thu, Dec 29, 2016 at 07:30:39AM +, Jianfeng Tan wrote: > >>This patch mainly allocates structure to store queue/irq mapping, > >>and configure queue/irq mapping down through PC

Re: [dpdk-dev] [PATCH v2 5/9] net/virtio: setup rxq interrupts

2017-01-03 Thread Tan, Jianfeng
On 12/30/2016 2:27 PM, Yuanhan Liu wrote: On Thu, Dec 29, 2016 at 07:30:39AM +, Jianfeng Tan wrote: This patch mainly allocates structure to store queue/irq mapping, and configure queue/irq mapping down through PCI ops. It also creates eventfds for each Rx queue and tell the kernel about t

Re: [dpdk-dev] [PATCH v2 5/9] net/virtio: setup rxq interrupts

2016-12-29 Thread Yuanhan Liu
On Thu, Dec 29, 2016 at 07:30:39AM +, Jianfeng Tan wrote: > This patch mainly allocates structure to store queue/irq mapping, > and configure queue/irq mapping down through PCI ops. It also creates > eventfds for each Rx queue and tell the kernel about the eventfd/intr > binding. > > Mostly im