On Tue, 5 May 2015 13:39:45 +0800 Cunming Liang <cunming.liang at intel.com> wrote:
> + pci_dev->intr_handle.intr_vec =
> + rte_zmalloc("intr_vec",
> + dev_info.max_rx_queues * sizeof(int), 0);
> +
This and other drivers should be using rte_zmalloc_socket to ensure
that the intr_vec table is allocated on the same NUMA node as the hardware.

