From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f65.google.com (mail-wm0-f65.google.com [74.125.82.65]) by dpdk.org (Postfix) with ESMTP id 5A61B1BA3A for ; Thu, 26 Oct 2017 00:39:20 +0200 (CEST) Received: by mail-wm0-f65.google.com with SMTP id t139so4725853wmt.1 for ; Wed, 25 Oct 2017 15:39:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=MzgIIjBSqBizPmkQLfJiACJ6QvrkUdTDdphlxUCXoEo=; b=TuYScrvnhnpaGbdeAevw6j0rPptSketEyaNtTbrjmhR/Bj0d74MB5PYdL+8mdHG763 h0+v4wm960EXV9jGrRxRs+c+OpOhq1JPpKVh03cwzpu8sgKJndEaZuqbgB6c7D6kfYgS tqXtHX1HK1Za9tSFXe7exr/Wy+B5MNRo31SezbRjoGr6Vmuqflc/3/LWSYUNHLDiv17S gpECDAclJ7U02mPOH8hR0u92A0Yvp3BlsADdqAes7SdjuQWx6Yzja1MnZRhefccDHZhK j/WLR8BNOGxWNNWc8asL7BTWXon+fOvDqV7v1OusYJI0FFWkd8MZ0FlqgxsbTjYasqgy y7kQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=MzgIIjBSqBizPmkQLfJiACJ6QvrkUdTDdphlxUCXoEo=; b=tB953nM2M0cIwiP/dg+e2+w0qZxAyIxTllSsThrPdE/dfPrmRU0yd+XmxvZfE+u9nw od0MI+HzzN8g1i808VEL0oeQLCZm4wU2uHSuk38Mjk501jF+dGrKjSBAK1FQUb3KMwro PJFbNl/Z43qvNiMYVpoBK4/zopC6Ud8a5PIDrFEQ/a6wtKTBDfPlJRzl4cP2jZHKJ3yF xA1fM9wUqFJWTIa4Ts1B8Amh5VNkITupRZ4vLMrg0H05Cx3eUmHWNVZpHtmtXi6GCWA3 FtvdpvQeAOc6P8dPyy0RdhhliX4oBz5Mg0Ux9065hmNxVFFJO5ojpQ5NyONjj52GaeSN 0Cyw== X-Gm-Message-State: AMCzsaWbUb9EjL4wW9Qa79s6cAz4xyxnWQp3LkLEVam5NMB3UUYgiUkp oOavnSEtGH4hjVrbjMIcrBePj5OV X-Google-Smtp-Source: ABhQp+RQX+cvvui/QySR4qDa54+h1Ns7RnFlIRM0vAIQ2tltX9PgflSzPVhUHznEvufF640g+ByWWQ== X-Received: by 10.28.238.148 with SMTP id j20mr2891924wmi.23.1508971159635; Wed, 25 Oct 2017 15:39:19 -0700 (PDT) Received: from bidouze.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id r63sm4466124wmg.13.2017.10.25.15.39.18 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 25 Oct 2017 15:39:18 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Thu, 26 Oct 2017 00:38:30 +0200 Message-Id: <387efa84d87464b29b1da4655c25607fc7435cf9.1508970254.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH v7 08/25] vfio: remove useless PCI headers and add vfio one 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: Wed, 25 Oct 2017 22:39:20 -0000 PCI headers are not necessary and are making this module dependent on the PCI subsystem. The internal eal_vfio.h header was necessary however for shared build. Signed-off-by: Gaetan Rivet --- lib/librte_eal/linuxapp/eal/eal_vfio_mp_sync.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/librte_eal/linuxapp/eal/eal_vfio_mp_sync.c b/lib/librte_eal/linuxapp/eal/eal_vfio_mp_sync.c index 598df12..a793e9a 100644 --- a/lib/librte_eal/linuxapp/eal/eal_vfio_mp_sync.c +++ b/lib/librte_eal/linuxapp/eal/eal_vfio_mp_sync.c @@ -49,14 +49,13 @@ #endif #include -#include #include #include #include #include "eal_filesystem.h" -#include "eal_pci_init.h" #include "eal_thread.h" +#include "eal_vfio.h" /** * @file -- 2.1.4