From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 8B5831B3A7 for ; Tue, 23 Oct 2018 11:09:46 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id F0E91212C8; Tue, 23 Oct 2018 05:09:45 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Tue, 23 Oct 2018 05:09:45 -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=mesmtp; bh=x52EJQkAAUBH+kPGoMGqM5mC90Ql4sBtgdpHJzi1pz0=; b=oBMM3HO9CPT1 YN2ncrtMC+zEhC+ZOuuzJJq61YLlDOrGwqjmdK9/Nse201e0y6uG2GkYmfRNRejY dDpnO1Z8wFnIlEZZogu47POJWi0swgD6kDugNFPvMtyvdUks5HEe1eMMLfdXfb3p ltiTrMhr2dkYyPW3a/Crwso/z5pna00= 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=fm1; bh=x52EJQkAAUBH+kPGoMGqM5mC90Ql4sBtgdpHJzi1p z0=; b=qW276iSJRBphh+k0q0FWazquAmIXNCJISDGr6Vx/WlSQ97pFB9fuxtdpr Gw1VsPGOlJwMRlqq2uRDFALMmrEzwwCbip6SYWESwi8mpnslGMkK0RvObH/DfXHl eg8dX0IEWMlmAgRxB567aT2mtEqUEH6qFMTYbjSqYY9ImptEBmpVW/J0AkHnH/mn NjXIHzFJAuN3JnoqIHaAbP2+/wz+EHljQ0j8+0LmGdyVVX835ckT2vwgJjEQgI8U NSuvzn3rjDPf2M4/qTGNbZ2d1nCmlhS7Pc4PS+iaFbk15KQupPTUR6y+IjYsZb32 3uW8zQGKP3sniU7JLOJbYVNyyqpBg== X-ME-Sender: 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 052B9102EE; Tue, 23 Oct 2018 05:09:44 -0400 (EDT) From: Thomas Monjalon To: Dan Gora Cc: dev@dpdk.org, "Burakov, Anatoly" Date: Tue, 23 Oct 2018 11:09:47 +0200 Message-ID: <23345537.Ht9BHoOmuU@xps> In-Reply-To: <4777b2af-5ae6-b87d-d6ef-3303e3390aa3@intel.com> References: <20181017002244.6117-1-dg@adax.com> <4777b2af-5ae6-b87d-d6ef-3303e3390aa3@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] test: fix compilation error in external memory test 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: Tue, 23 Oct 2018 09:09:46 -0000 17/10/2018 12:12, Burakov, Anatoly: > On 17-Oct-18 1:22 AM, Dan Gora wrote: > > Fix a compilation error in test_external_mem.c: > >=20 > > CC test_external_mem.o > > test_external_mem.c: In function =E2=80=98test_external_mem=E2=80=99: > > test_external_mem.c:375:2: error: =E2=80=98for=E2=80=99 loop initial de= clarations are > > only allowed in C99 mode > >=20 > > for (int i =3D 0; i < n_pages; i++) { > > ^ > > test_external_mem.c:375:2: note: use option -std=3Dc99 or -std=3Dgnu99 = to > > compile your code > >=20 > > Fixes: b270daa43b3d ("test: support external memory") > > Cc: anatoly.burakov@intel.com > >=20 > > Signed-off-by: Dan Gora > > --- >=20 > Oops >=20 > Acked-by: Anatoly Burakov Applied, thanks