From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail5.wrs.com (mail5.windriver.com [192.103.53.11]) by dpdk.org (Postfix) with ESMTP id 6278FA2F for ; Mon, 24 Apr 2017 18:19:48 +0200 (CEST) Received: from ALA-HCB.corp.ad.wrs.com (ala-hcb.corp.ad.wrs.com [147.11.189.41]) by mail5.wrs.com (8.15.2/8.15.2) with ESMTPS id v3OGJj7J030170 (version=TLSv1 cipher=AES128-SHA bits=128 verify=OK); Mon, 24 Apr 2017 09:19:45 -0700 Received: from ALA-MBC.corp.ad.wrs.com ([fe80::fcbe:9b7:1141:89a1]) by ALA-HCB.corp.ad.wrs.com ([147.11.189.41]) with mapi id 14.03.0294.000; Mon, 24 Apr 2017 09:19:44 -0700 From: "Legacy, Allain" To: Adrien Mazarguil , "dev@dpdk.org" CC: "Peters, Matt" Thread-Topic: [PATCH 07/13] net/avp: fix errors in exported headers Thread-Index: AQHSvRLreADkVgM1cEq8YjsADw2/2KHUsoYg Date: Mon, 24 Apr 2017 16:19:43 +0000 Message-ID: <70A7408C6E1BFB41B192A929744D85239690EC09@ALA-MBC.corp.ad.wrs.com> References: <5ad16bd561e4a9d7d5a6dfadaccc56d746feb537.1493048352.git.adrien.mazarguil@6wind.com> In-Reply-To: <5ad16bd561e4a9d7d5a6dfadaccc56d746feb537.1493048352.git.adrien.mazarguil@6wind.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [128.224.140.166] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 07/13] net/avp: fix errors in exported headers 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: Mon, 24 Apr 2017 16:19:49 -0000 > -----Original Message----- > From: Adrien Mazarguil [mailto:adrien.mazarguil@6wind.com] > Sent: Monday, April 24, 2017 11:53 AM <...>=20 > diff --git a/drivers/net/avp/rte_avp_common.h > b/drivers/net/avp/rte_avp_common.h > index 31d763e..6cdaca9 100644 > --- a/drivers/net/avp/rte_avp_common.h > +++ b/drivers/net/avp/rte_avp_common.h > @@ -57,9 +57,18 @@ > #ifndef _RTE_AVP_COMMON_H_ > #define _RTE_AVP_COMMON_H_ >=20 > +#include > #ifdef __KERNEL__ > #include > #endif > +#include > +#include > +#include > +#include These 4 are going to need to be in an #else of the #ifdef __KERNEL__ other= wise our local kernel module build will fail.=20