From patchwork Fri Aug 25 09:04:31 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: 27930 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 C9DC79105; Fri, 25 Aug 2017 11:05:11 +0200 (CEST) Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id B4B297D8A for ; Fri, 25 Aug 2017 11:05:01 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id b189so6986096wmd.0 for ; Fri, 25 Aug 2017 02:05:01 -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=XGEwkAbQG06J+JDfaFXommMcjsSQJrhovIPwlf5nYSM=; b=xYVIQp5t1ocPiRBkqYJyHPhvKcPjOQixHUWEV/1sZgLPuxe3b7HdQsFoTJ6aI9qJPr YGd8DA1Z0vhf982vMx1v69Cd3A1IpROPMhXp0KDE8N/wir+k99gRKuuvh+OXdANwd+pT DJhALklOhoVaw/eoAnwqeSw4nXjJ58lUSMLIzBY+VJhLAsmsQUxuvUrbbDUQNwrXLQ/A rh+rmM518TlMCcnB0MPMrk6qTTSn4P77/brHHcfVsBpDK+VwVNXPZfFI6FNvH50DeIg5 DGMDStEht9VoM0Oo25dst7f4rJGbF+fI3u9PxkN+DBzRch5Lq5kwGWURD9mQcGaQo/6E efSg== 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=XGEwkAbQG06J+JDfaFXommMcjsSQJrhovIPwlf5nYSM=; b=tgXV7Mqj3FPra2NwoN+JirHrObcw3Pj4T9lYxuf6oiog4wqsS3KTE/9+rUNlCQRct7 EAz4LqzWwtrZfVb+mbb8J9IOmXIbPEZkJN9spEiz68lHHtwWBg0lPBIio6YwZV6vQhCa 38P6Xg4BW2KlSSq+fK1ajL3GzdCrOYTiFKLcLQWSyo/SMVXSPkRGs3xq2+l63LxCRTk4 3Z965RAthi28tcrqpJjZdQACiZBdO7taz6iIGqEpFqdqq2QEj2/E3ToKwRwEB1vMOqA6 Tr4TuMQ4uy6vDSVUNagVHm0Ym/J9PziWQQSCALKKLCfYPZT4TYjwR62+Cdn+S8iIb8JX Mz0A== X-Gm-Message-State: AHYfb5giLafqoe7Gy/ore7RyMAL9FuarZir+56SV0fVE0kr5kDnGDOYJ oWGUaPxAun/IIRG0bXs= X-Received: by 10.28.232.71 with SMTP id f68mr821575wmh.100.1503651900966; Fri, 25 Aug 2017 02:05:00 -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.04.59 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 25 Aug 2017 02:05:00 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Fri, 25 Aug 2017 11:04:31 +0200 Message-Id: <36281be08ed942f7aa7de33e4fef0288d0927ec1.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 09/13] lib: 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 the libraries, as structuraly unsound as it may be. Signed-off-by: Gaetan Rivet --- lib/librte_ether/rte_ethdev_pci.h | 1 + lib/librte_eventdev/rte_eventdev_pmd_pci.h | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/librte_ether/rte_ethdev_pci.h b/lib/librte_ether/rte_ethdev_pci.h index 56b1072..722075e 100644 --- a/lib/librte_ether/rte_ethdev_pci.h +++ b/lib/librte_ether/rte_ethdev_pci.h @@ -36,6 +36,7 @@ #include #include +#include #include /** diff --git a/lib/librte_eventdev/rte_eventdev_pmd_pci.h b/lib/librte_eventdev/rte_eventdev_pmd_pci.h index b6bd731..ade32b5 100644 --- a/lib/librte_eventdev/rte_eventdev_pmd_pci.h +++ b/lib/librte_eventdev/rte_eventdev_pmd_pci.h @@ -50,6 +50,7 @@ extern "C" { #include #include #include +#include #include "rte_eventdev_pmd.h"