From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH v7 09/10] igb: enable rx queue interrupts for PF Date: Thu, 28 May 2015 14:25:48 -0700 Message-ID: <20150528142548.788ab5bb@urahara> References: <1425012976-10173-1-git-send-email-cunming.liang@intel.com> <1430804386-28949-1-git-send-email-cunming.liang@intel.com> <1430804386-28949-10-git-send-email-cunming.liang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Cunming Liang Return-path: Received: from mail-pd0-f181.google.com (mail-pd0-f181.google.com [209.85.192.181]) by dpdk.org (Postfix) with ESMTP id 58A6B37AA for ; Thu, 28 May 2015 23:25:46 +0200 (CEST) Received: by pdfh10 with SMTP id h10so50338220pdf.3 for ; Thu, 28 May 2015 14:25:45 -0700 (PDT) In-Reply-To: <1430804386-28949-10-git-send-email-cunming.liang@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 5 May 2015 13:39:45 +0800 Cunming Liang 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.