From patchwork Mon Sep 25 15:24:05 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: 29177 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 6DA441B1F4; Mon, 25 Sep 2017 17:24:49 +0200 (CEST) Received: from mail-wr0-f170.google.com (mail-wr0-f170.google.com [209.85.128.170]) by dpdk.org (Postfix) with ESMTP id 59D831B1BF for ; Mon, 25 Sep 2017 17:24:37 +0200 (CEST) Received: by mail-wr0-f170.google.com with SMTP id z39so8437699wrb.8 for ; Mon, 25 Sep 2017 08:24:37 -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=rHnyiDy99M1Tqr0iCgO8R/OUqjCjeVxq+s28N3dARRpNRAS3Sq26u57cqCkoGRK0jr c1UnNUBJI+Af7xX4SFTccn5h9gfn8ni7ZJ6RF4/K7bZnrzglKATFOTbRtrr//d8Va6ot kd17pja5iC9YmDegMul8K2OKodNXZe++/o8NxPkvvB2872I6sHSl6rhX54fOrCt6zK7j CETD+nRHLqxwSBgp3DdBoSuNGSuduBLAXP/Xl0dgGlNcKBXWPywbHc3K5iIXwp+eA820 oSRCq7Dh98SE4DQORnnJw7ad8DOEUzoWrRGJtAzIB2v8NA+egAYJD0R0dbOI6/zN3RC4 9baQ== 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=OnR49aTGgJLRzNULI8HtF6lvsr8Ev/2L2cxLd7iMjo0VA7j21au44QhciaQ+mvXlIE mlNK7hP08Rf1G6wrfUPisSoAOE8brH/8TAIW86i/UtAdXbTgazYrD/13AAk3kATsnMPq sqwq2YsWnyvOgwVTXaJWpwbIsC5Qcx8/wEB9wpo1cp5W8iRIrn3VZXHRoE9WCbT46KTW 4KBr9aPbQSHJHI2E0NQVrS0bgcD04qEeLy+uDHoPidPuMn2Wl4ZTHBOFd+SGBzpqjH0v FUOmAfciQmWfFrApPKGnJyQL9kPSAYem/a3Y1eL/5nuU8lxocRIc7N8IAXDFC71OqL9m c6Zw== X-Gm-Message-State: AHPjjUhwY4hOfca4YJexk6ysz+Kwmzfc1O4RKd21P/2WxHJ6lVC1ULvS bQ2LGm7em+/8TW/rLFQ+z7AUGGES X-Google-Smtp-Source: AOwi7QBg2DaC04jYO1cRErdrOu74yM8b1mxAGKCKxuJUhky5fTAeUxiJ46Q3sVVSOlWmnk9LU42BUQ== X-Received: by 10.223.134.25 with SMTP id 25mr7065279wrv.186.1506353076514; Mon, 25 Sep 2017 08:24:36 -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 o3sm1058933wmg.3.2017.09.25.08.24.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 25 Sep 2017 08:24:35 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Mon, 25 Sep 2017 17:24:05 +0200 Message-Id: <9113f19ea81f3a7f4fd5970d75a9602a3bb26ead.1506352672.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 v3 08/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 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)