From patchwork Thu Oct 26 10:05:47 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: 30941 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 1E1981BA87; Thu, 26 Oct 2017 12:06:43 +0200 (CEST) Received: from mail-wm0-f65.google.com (mail-wm0-f65.google.com [74.125.82.65]) by dpdk.org (Postfix) with ESMTP id 23D0E1B7B6 for ; Thu, 26 Oct 2017 12:06:30 +0200 (CEST) Received: by mail-wm0-f65.google.com with SMTP id 196so18769892wma.1 for ; Thu, 26 Oct 2017 03:06:30 -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=tDeKKEKEjp3RxcaQlLdzosLS6rw8EYExV+q2cvIndXc=; b=0heo/RPiNyX5RM/7HGGWTHgE2lPWXZc1ac8HrVvJREJlbDPK2aJCd6r8pOKdFpm07G cguifbX7Ak9li6+BkUlkGmUGhp9L6FWlwWmuCFDYPxzUJAY/H7u4k95bpM08ixV8gMUC 8pBUwxduYPjQ2D70eu/VdwVZksot09jaE/Ta9EaJf5FlO2zGxP2CU/N2NJHQ2crZ7wM1 TvLBLJphyHI6i/AYSn+nZLmo4RlSFQz1ydfydNx3FyYi9Lg34NqfpEtg/JRtt3gNFKR6 nIlP2ChctaI/qSfrayj6BU1s2RtPyv97EV4DTCW//PlLTyTw7MSqAbOKEcsc/mz4q0aJ QLIQ== 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=tDeKKEKEjp3RxcaQlLdzosLS6rw8EYExV+q2cvIndXc=; b=GNpTvaZjt8r2lmC/18aAowsUEIXB0VHtapZYPkA/oM4U3Pyv1yxd2Hd0eKFsm6X3gn nhDJYO7tqdUzEzyovj/IIsRFpN4UyArF6Ojwblcei77N58YjdO5xNDLvMyAl3LICw2C/ +GjQTkKS5I8dmE4WpqBitzyBcu9MnoyUSdGzEnhlLWL3+gb7nXli8BRBQuiwEGO09tJl lYhEJdKxhLgfqmA5Exjk+o/vMdqIQ9NkHaRHkx1GCcux5pGGxLffQO7Y0yB2hp99w+2W w6BUuAjKsbDDLDh3u8jUQsuWGFo0+whqqPWLuHnlZEfvomTvoR5DGrSANEemGNZSwyTr RDCw== X-Gm-Message-State: AMCzsaWU/dzZ6p7+68CGXQaDCRSrIrBsmAseoMqwuZvmLo9sInW+kZMG tD1+z/Dd38wI0WoLOj8WRijraw30 X-Google-Smtp-Source: ABhQp+Rr1uzd2vjrevu/yWYeYr9/Rum3tLxBh/o7M0eW74pbr+u95yICSq/e2j/tBcD/mZIWqF6cng== X-Received: by 10.80.147.83 with SMTP id n19mr7873411eda.36.1509012390185; Thu, 26 Oct 2017 03:06:30 -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 u12sm3339619edk.45.2017.10.26.03.06.28 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 26 Oct 2017 03:06:29 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Thu, 26 Oct 2017 12:05:47 +0200 Message-Id: <80cde62088215bde175b59958c68bf9d63dd608d.1509012196.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 v8 02/25] 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 5c63ced..3e022d5 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"