From patchwork Thu Oct 12 08:17:01 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Ga=C3=ABtan_Rivet?= X-Patchwork-Id: 30173 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2E3FB29C6; Thu, 12 Oct 2017 10:17:37 +0200 (CEST) Received: from mail-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id 4A931237 for ; Thu, 12 Oct 2017 10:17:34 +0200 (CEST) Received: by mail-wm0-f46.google.com with SMTP id u138so10815614wmu.5 for ; Thu, 12 Oct 2017 01:17:34 -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=Jr8mqOQKHqfdFdisiWvmWp3TAdUMntVcBw+SLt2nZao=; b=RdSmPpbBgAc8YAIiyD0UYlwdg597W/ZI40zMg92tR/LPtauwy6rYVF4HpDBQ4dD78+ goTpfbKwldfgxCU/bPIIuf0pSsQ9zASRpFDW2ZrNEvcl3WpL6vEsNeKe3b94CKEhVEId 7qGHJRfLSuW0BqrjaupAm6Y0U52zWSijs/RKY/yfZ57xCC/Od67Tvtq4Tkjh4HyV+br8 gp2lkp6iaPMhRcnCLPVq0nN8AH1zVTv3NVoxBycm4iZHwII0BXfd5Gr6/6Cxw6xa8/1D wPmqljCfpVYSNLvBq90ldp84MY7AipSh9DzMe4tkEjwCmuGhDrNgcF8glRWRKA0MAl2L UCZg== 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=Jr8mqOQKHqfdFdisiWvmWp3TAdUMntVcBw+SLt2nZao=; b=J5un/LawV6JQAYyCh/WxmZBb3oIijXwYIGTcr0cepCTXJA89VwRaTdmwFgzNPcFbs/ cyQZV89T+JnvMB2+UWDNZCMbmb1Cz1ixZ+WZCga9hMD2o2ZKH6CunXSeqp3lNDWhAo3I VduFIKMgoJHE5vK6H4o626XHp2mpJMgff7twMhDVTY/kJTdJaypb3YGIb4rCTdj1stMO GjZf6QMbr0LtgC7Qf7sqw72odJ7Z1/u+3ORS0EI439q0jW94XITzWktBLv7gi0EeYP/4 GfFqbO1rxYlPSKMdzCEXLgf8dGpCBpHE2bVY985klSpKUMfJG1eHOzlrxb+lov+efXS6 bLAQ== X-Gm-Message-State: AMCzsaXlV4Cyp+y+8u9KeLnDDjkoVsjYwPElFmi68SRyTwjfpd+jGk55 8UQnLkzy7sAA1FCcyKPCIxpgsmgs X-Google-Smtp-Source: ABhQp+QmQ4tvQUKbW3k3mNi91AiP+88QbKe4M/XWRy6Gvk7nOgHuSewTTpCcBsLbHeq0i6/2K3pA6w== X-Received: by 10.28.69.8 with SMTP id s8mr998597wma.65.1507796253545; Thu, 12 Oct 2017 01:17:33 -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 25sm16711227wrv.8.2017.10.12.01.17.32 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 12 Oct 2017 01:17:32 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Thu, 12 Oct 2017 10:17:01 +0200 Message-Id: <6133d12d9903e8a9a31237a9442c5288815bf7ce.1507795823.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 v4 01/16] eal: include debug header in bus source 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This header is included through rte_pci.h, which will be removed once the PCI bus is moved out of the EAL. Signed-off-by: Gaetan Rivet --- lib/librte_eal/common/eal_common_bus.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/eal_common_bus.c b/lib/librte_eal/common/eal_common_bus.c index c3c77f4..3c66a02 100644 --- a/lib/librte_eal/common/eal_common_bus.c +++ b/lib/librte_eal/common/eal_common_bus.c @@ -35,6 +35,7 @@ #include #include +#include #include "eal_private.h"