From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 52B701BB0C for ; Thu, 26 Oct 2017 17:56:14 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id C203720CB3; Thu, 26 Oct 2017 11:56:12 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Thu, 26 Oct 2017 11:56:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=qLwryRuf7ka8Ag8gPi3f9CU+WE 6Me3mL7rBxBMsIOW0=; b=claWj/Q2ga9vj9wsX98P8AbxGM8k5ZNcgYlz7r3ev4 oMKhTUIrY2cAD4i1D3jgg1Qisrx32wOBKdcriI6gG3vlDMmx3DaLMrQh0lFoBRV4 26GZWdtyp9Rp3lxDfgKXTmF61H33m80g/7F+WuegEtI4CqnkMRJ0RTng6KtYVo6B Y= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=qLwryR uf7ka8Ag8gPi3f9CU+WE6Me3mL7rBxBMsIOW0=; b=ppdphIDGZGGol7/adWBbTl k7XqE3p1oID2LtCDuMJhCos36bAUTWL21MIJoW+AIay8iC8fohf9MyzFd0D1Qjp2 z48Rwe3XTurzTEPVg8VB+rlNzMe+q3Im97ZKkaElrwYS5sXwSMwCzyyIbWIxNUAI 6DFjavdY7uj87gAB9dlLGCNTtl3R5eVxfS0GnXriitM/5sOxNyCZAx+Aj9nDMd6S 4tgGHG/kngIAys95ynyFuDfZcCO7plSzumTXitlVxVTdcPT3qSf30aVu7wB6BePV a038nCAJKlnGzv8DvZBtE7Az2raNoQjt9OXHUrYToh6VoAwphaytNTc5QyLBR/xg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 6F5B97F96B; Thu, 26 Oct 2017 11:56:12 -0400 (EDT) From: Thomas Monjalon To: Gaetan Rivet Cc: dev@dpdk.org Date: Thu, 26 Oct 2017 17:56:11 +0200 Message-ID: <2849830.HRK7RtZWQE@xps> In-Reply-To: <558a8f90bdb675545978e78ff19e2b370d7008f1.1509012196.git.gaetan.rivet@6wind.com> References: <558a8f90bdb675545978e78ff19e2b370d7008f1.1509012196.git.gaetan.rivet@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v8 23/25] pci: introduce PCI lib and bus 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: , X-List-Received-Date: Thu, 26 Oct 2017 15:56:14 -0000 26/10/2017 12:06, Gaetan Rivet: > Libraries, drivers, unit tests and applications are updated to use the > new rte_bus_pci.h header when necessary. Few compilation fixes: --- a/drivers/crypto/qat/qat_crypto.c +++ b/drivers/crypto/qat/qat_crypto.c @@ -60,6 +60,7 @@ #include #include #include +#include #include --- a/drivers/net/bnx2x/bnx2x.h +++ b/drivers/net/bnx2x/bnx2x.h @@ -18,6 +18,7 @@ #include #include +#include #include #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN --- a/examples/ethtool/lib/rte_ethtool.c +++ b/examples/ethtool/lib/rte_ethtool.c @@ -37,6 +37,7 @@ #include #include #include +#include #ifdef RTE_LIBRTE_IXGBE_PMD #include #endif --- a/examples/ip_pipeline/init.c +++ b/examples/ip_pipeline/init.c @@ -49,6 +49,7 @@ #include #include #include +#include #include "app.h" #include "pipeline.h" --- a/examples/kni/main.c +++ b/examples/kni/main.c @@ -62,6 +62,7 @@ #include #include #include +#include #include #include #include