From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 7FA062C56 for ; Sun, 26 Feb 2017 22:54:58 +0100 (CET) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Feb 2017 13:54:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,210,1484035200"; d="scan'208";a="69290341" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga005.jf.intel.com with ESMTP; 26 Feb 2017 13:54:56 -0800 Received: from desku.iil.intel.com ([143.185.141.168]) by imail001.iil.intel.com with ESMTP id v1QLssSX017673; Sun, 26 Feb 2017 23:54:54 +0200 From: Rami Rosen To: dev@dpdk.org Cc: Rami Rosen Date: Sun, 26 Feb 2017 23:54:11 -0500 Message-Id: <20170227045411.20525-1-rami.rosen@intel.com> X-Mailer: git-send-email 2.9.3 Subject: [dpdk-dev] [PATCH] net/vhost: remove include of numaif.h. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2017 21:54:59 -0000 This patch revmoves include of the numaif.h header from rte_eth_vhost.c. Commit 586e3 ("vhost: export numa node") moved the invocation of get_mempolicy() from rte_eth_vhost.c to librte_vhost/virtio-net.c, so there is no need to include the numaif.h header anymore in drivers/net/vhost/rte_eth_vhost.c. Signed-off-by: Rami Rosen --- drivers/net/vhost/rte_eth_vhost.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_eth_vhost.c index e98cffd..62ccb74 100644 --- a/drivers/net/vhost/rte_eth_vhost.c +++ b/drivers/net/vhost/rte_eth_vhost.c @@ -33,9 +33,6 @@ #include #include #include -#ifdef RTE_LIBRTE_VHOST_NUMA -#include -#endif #include #include -- 2.9.3