From patchwork Mon Sep 18 09:31:43 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: 28827 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 056E91B1B6; Mon, 18 Sep 2017 11:32:25 +0200 (CEST) Received: from mail-wr0-f169.google.com (mail-wr0-f169.google.com [209.85.128.169]) by dpdk.org (Postfix) with ESMTP id 3EA7D1B1A3 for ; Mon, 18 Sep 2017 11:32:13 +0200 (CEST) Received: by mail-wr0-f169.google.com with SMTP id l22so5760166wrc.10 for ; Mon, 18 Sep 2017 02:32:13 -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=h2ZJhlDJbG3l4Z60eeDnTyJ9CdAyXTLs3yYrvmj1iZw=; b=0zFO1qByH3CWSFNdwTk6912LcyeFczwyz01MUZK3i6Fe55oq05libh9jBJSdsITVOd 707cRdjp86xo/mNwZaDAtS8pycVyOS2hLYDRJHWeKo5bknlSAk7AMNM4XJsQv0s0emwV 8E8PLy1VhJDEpENmLO9kuCOGZ4N4xsFF/0PL0yQr2fYITMLqNV8mb2nvs+UG0gvl9H05 XJFDGqJMXxjzhnhmv1uKaIIab5p2od16aeSbcbWZB5FsTkCgf5Egpj96pIj6BnT0VR1o 6Eq200YBX0hlxNubw973PHirHDBSbII44f9qTLezfmg5g7uIeBTAKGdVPGVCzp5uheoc eOgg== 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=h2ZJhlDJbG3l4Z60eeDnTyJ9CdAyXTLs3yYrvmj1iZw=; b=bKVyZxt2VpS2JD1MjLAhMDRyCWaacLyz7//7i15YwCLpmzXghGQ9bh+AKbFQKHnuWN kYWJsvX7fe5Cruda3cPw4Jyuh3n/ywFWKq1fOtshxDic9hTOYcjdW5VTDc0Rh25eO0gD x+GdUgPdYzREIPDXXbX4NoQvkAyBltJ5J2yfkXDXVovX+Mp3415giLvkfUgkMddwBae0 igKqhD6+DOkafcm7x30yCr3/dXgj0DYzG1GdLJ1ObGpicQOLpqNBdlARWNPf2/VDm2sr W6rj9iFWVw0Pli+B2RCk4uEwCZ6eZuM1Ql97ZJJwl1scNTylIeOXARvuKLUrl/DMd6oi UDgw== X-Gm-Message-State: AHPjjUjPBmzsFCI95kW4Z9xrF7MoYmMf2vdFLj9sK3PpfuKy0M+bgyuh SfIEjQHP2D4pAOjsDtU= X-Google-Smtp-Source: ADKCNb7OZDmHF1ALl0YBNsGNTGztSshE+4zifgAmo7bd7Eoc/u2JQ36EzFngQQmf/Ji8/0lK1IWWnQ== X-Received: by 10.223.195.41 with SMTP id n38mr26943729wrf.75.1505727132831; Mon, 18 Sep 2017 02:32:12 -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 f89sm6416859wmh.18.2017.09.18.02.32.11 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 18 Sep 2017 02:32:12 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Mon, 18 Sep 2017 11:31:43 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH v2 09/14] 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 1d1ee75..d0613b5 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)