From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E8E60A05A1; Wed, 22 Apr 2020 00:47:24 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F00F11D148; Wed, 22 Apr 2020 00:47:23 +0200 (CEST) Received: from wout3-smtp.messagingengine.com (wout3-smtp.messagingengine.com [64.147.123.19]) by dpdk.org (Postfix) with ESMTP id 0652A1D146 for ; Wed, 22 Apr 2020 00:47:21 +0200 (CEST) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.west.internal (Postfix) with ESMTP id AC5AA580; Tue, 21 Apr 2020 18:47:20 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute7.internal (MEProxy); Tue, 21 Apr 2020 18:47:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=fm1; bh= i+WrIxj69Nb6wj788JUSvdIQzKvYboJLBRH71ZwAVQw=; b=JwZGRQYYI1zWF/ue ZJky/7qJIRDMU9QrQBkbCa9Bllkl5Dr5GqtL+ojytoYT+/KIbqDratShZMRpglin kfl4NWD68eGavAilvqB1zTLXOXwfK1H71/fKAOil58joJu3jC6t/EVKT+39Yn5kL apsvSfQDAeAATIOnn5J2n789ZVOG5GLm4gkDXQXxH+PD3fFvGccqz0t1U1aMA3o8 13Fctej/cabE5G8vgh2DOHYEwEoIwjElZzi5FWHi05aLpHnC0Cz/bHw7o+Qdsul1 DtDPS5OzhG6xN8AQEQxIcJhnS6q6jdU0ErTDBT37PF2TGoeOlSR6cTr0EnVgSdix GUvFuw== 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=i+WrIxj69Nb6wj788JUSvdIQzKvYboJLBRH71ZwAV Qw=; b=d431vb7sTH/xG/c5esH81fSmGxdXd81LPTLiWFnrY5CfaoQsEYT/s4vnu VE+nJ2V+jFt++PWDjtS4/4fhWorVXYIAsNytzkLQdOVmlSRX6HW0x8FUuELNBNf6 3Ionv3D5Y6mLOvyhzqN1cREn76zr0f8JVtJJoLugUuq5Pa2TCrPU4VWHFj8VpHPP hSx00KGPCP+MPqX8qOeucCNV9/76189VIfwHBWUg+MaGOa0chHfv0AMtZcGgucak w/PB+QylySrUmZa81DonluuE/kcRhrpGvB7vsw/38rrO9Iy5k/Ep/WSmnZmuJUSQ zb2Tfaq9wTAA2LXVoc62wNCcN4HQw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrgeeigdduvdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuihiivgeptdenucfrrghr rghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id BA59F3065C96; Tue, 21 Apr 2020 18:47:19 -0400 (EDT) From: Thomas Monjalon To: Tal Shnaiderman Cc: dev@dpdk.org Date: Wed, 22 Apr 2020 00:47:12 +0200 Message-ID: <5571319.alqRGMn8q6@thomas> In-Reply-To: <20200421150520.18840-1-talshn@mellanox.com> References: <20200421150520.18840-1-talshn@mellanox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] eal: fix Windows build 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" 21/04/2020 17:05, talshn@mellanox.com: > From: Tal Shnaiderman > > Windows headers pthread.h and fnmatch.h > uses rte_common types > > The error is: error: unknown type name '__rte_unused' > > The fix adds the missing includes. > > Bugzilla ID: 458 > Fixes: f2fc83b40f06 ("replace unused attributes") > > Signed-off-by: Tal Shnaiderman > --- > Depends-on: patch-68444 > (eal/windows: do not expose private EAL facilities) Applied, thanks