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 D35A5A0526; Mon, 20 Jan 2020 21:11:57 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 660671C037; Mon, 20 Jan 2020 21:11:57 +0100 (CET) Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) by dpdk.org (Postfix) with ESMTP id 72A1B1C028 for ; Mon, 20 Jan 2020 21:11:56 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 7553262A; Mon, 20 Jan 2020 15:11:54 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 20 Jan 2020 15:11:54 -0500 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=2J5+ZrzoreY9ttqxIOJ14+pctIr8fR/1BA3E/2f+hjU=; b=IsBAHAriYNUt Pon7RE90oFAa9LWlCy70W5X9r2RjRS02Fvbb1pn3/dkkyV264DvGCELlN+CP8Bai nHvcHmVGI0uMrrD7dCRHCbBHnvKLmdKAAMjVPFvCHHFfEzcxBegVbx7Usd+MF+O+ fg0Yt353Kk+r0We8vjvG2u38qvLcLUg= 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=2J5+ZrzoreY9ttqxIOJ14+pctIr8fR/1BA3E/2f+h jU=; b=LIjtW+Vx/jpp4GH7WKyZBNX9urc0Ap7wpPYq70cHdbC61v8XnfpEviYcC 52T7clyQ9IKlqfJq06UKdFBkori1CgfqlsStopP57VGml+H1WK08eR5/1ALyXMAV EA6NtfCNZ/f4K6yEKt8LBQOCWupACVIaN4Y54AMvdxcyE0wJvTI2mxSjA4FkJpyZ 3ZC83kA7bmOZIZ5gr6KdHaaQ3Suei0yET45bpOl/EKbnwU8myaBKUAK6jvC8hmBI RD7mmK3cmdnPqd50B+rM4xCo4kgPRX5QIUJJe1pe07r1fSmYAbNbU1i99gfkGmC1 3mgPe+HJPQdCIH5SqHxYdl614hdLw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrudeigdejudcutefuodetggdotefrodftvf 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 2CB1E8005B; Mon, 20 Jan 2020 15:11:53 -0500 (EST) From: Thomas Monjalon To: Jerin Jacob Cc: dev@dpdk.org, david.marchand@6wind.com Date: Mon, 20 Jan 2020 21:11:51 +0100 Message-ID: <1692224.FMhQkTaH9n@xps> In-Reply-To: <20191219112507.3142025-1-jerinj@marvell.com> References: <20191208113413.2179329-1-jerinj@marvell.com> <20191219112507.3142025-1-jerinj@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 1/3] eal: introduce structure marker typedefs 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" 19/12/2019 12:25, jerinj@marvell.com: > From: Jerin Jacob > > Introduce EAL typedef for structure 1B, 2B, 4B, 8B alignment marking and > a generic marker for a point in a structure. > > Signed-off-by: Jerin Jacob > --- > > v2: > - Changed __extension__ to RTE_STD_C11 (Thomas) Actually I was just asking a question to know if zero-size arrays are part of C11 or not. It seems not, so better to keep as __extension__. Or it could be a new macro.