From patchwork Fri Aug 25 09:04:34 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: 27933 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id EBFFD9121; Fri, 25 Aug 2017 11:05:15 +0200 (CEST) Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id D5D938CF2 for ; Fri, 25 Aug 2017 11:05:04 +0200 (CEST) Received: by mail-wm0-f53.google.com with SMTP id l19so3526794wmi.0 for ; Fri, 25 Aug 2017 02:05:04 -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=/nZ7wTaACoPMRgoVZAt3JVVzeq2WlLLIBb3rBJxqL8Y=; b=mnsLkRESaak3z+v4F/axFfhqP2JK40Hq7eeRwhbbqfzsDfXIu5ie4cDGpKOW5MG7RX SaDMBRbYwPcxCl+VtYcPzfvUEJMeSPTv9m4yeLlgfTj8Btu7E3PchVvyaYNnbrCBT/hY 7EIY3HpFnRpBvnoCyTdIDc70h8E7WhuA5EDxDWvhNAN9UEelMHM5u4TyfbfOIjL2UHHx BvZkUzJwBD1wZRjIYvlXt5WhLWzMhjAyLV2YZqpYcJKmFB7Tf4iMJOBm2rpiP+rq/DMw 7skGBmgjXooyHqkHimh3GEw3O7dwbWhk8yGdQ34a1TOCLvvo6OTHRv9YayBcRWUYYUqY j/jw== 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=/nZ7wTaACoPMRgoVZAt3JVVzeq2WlLLIBb3rBJxqL8Y=; b=r4I1CwJFscGpz1aItHiF0GDUt0/Ut2LV1YdSln9wpJiNQHX43QMOtJdfzLAoMZMAz9 PFvs36knQwAkes/HtBukbqICCKvdafd5rNkwGsKJzyallPddveDgHyLHUt5k/HbfT4a3 XCGS3BaRXZ9Z5rrtgz2H9lQtRikY7wLnn1STxQq6TCm0yiVImSHh8u6MVH9FOhylGkLy xc326Pft24uWhaNFCZyQs4yt1YWZa+2tIxPBD1GJL1d+xhMzC/8ufx4+yD6DBjewaNbI hJyPscjsraMhgw4BFewvMsrSeTyBbWQaFKkCGalkxlciYUERMxg2usAQI5rBFDBc/T1H W7Rw== X-Gm-Message-State: AHYfb5i/8CmWQMBbPl/4Nrz/P39VOh9fa3INx24K0kgXa7ye8r930+Wt 5S+Hoo+pjn8mQszAFrU= X-Received: by 10.28.54.73 with SMTP id d70mr798676wma.32.1503651904225; Fri, 25 Aug 2017 02:05:04 -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 q141sm782350wmb.11.2017.08.25.02.05.03 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 25 Aug 2017 02:05:03 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Fri, 25 Aug 2017 11:04:34 +0200 Message-Id: <389dbb722ac57480c7d5484abb581860138a8a4f.1503651392.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 12/13] app/testpmd: include rte_bus_pci 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" Devices and drivers are now defined within the bus-specific PCI header. Update applications. Signed-off-by: Gaetan Rivet --- app/test-pmd/testpmd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/testpmd.h b/app/test-pmd/testpmd.h index c9d7739..787fc03 100644 --- a/app/test-pmd/testpmd.h +++ b/app/test-pmd/testpmd.h @@ -35,6 +35,7 @@ #define _TESTPMD_H_ #include +#include #include #define RTE_PORT_ALL (~(portid_t)0x0)