[dpdk-dev] [PATCH v4 01/13] eal: vfio map misc intr to vector zero

2015-11-04 Thread Cunming Liang
During VFIO_DEVICE_SET_IRQS, the previous order is {Q0_fd, ... Qn_fd, misc_fd}. The vector number of misc is indeterminable which is ugly to some NIC(e.g. i40e, fm10k). The patch adjusts the order in {misc_fd, Q0_fd, ... Qn_fd}, always reserve the first vector to misc interrupt. v3 changes: -

[dpdk-dev] [PATCH v4 01/13] eal: vfio map misc intr to vector zero

2015-11-04 Thread David Marchand
On Wed, Nov 4, 2015 at 9:45 AM, Cunming Liang wrote: > During VFIO_DEVICE_SET_IRQS, the previous order is {Q0_fd, ... Qn_fd, > misc_fd}. > The vector number of misc is indeterminable which is ugly to some NIC(e.g. > i40e, fm10k). > The patch adjusts the order in {misc_fd, Q0_fd, ... Qn_fd},