From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 275C41CCB5 for ; Thu, 5 Apr 2018 18:49:35 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id C0C6920DA5; Thu, 5 Apr 2018 12:49:34 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 05 Apr 2018 12:49:34 -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=RUFSjM4/Fd+pYxZbjTheW9Wlow yYPE60E0F2CqgMsOU=; b=MONw8OK1X4q50T/UDH2VRhHlpnLPLZniNlfNpouxy/ XI56vfePCNYlrZ3KAdmcL21aS8l6Wt6v4yw5G/EzHcrabpfSDu7xdEYOJ+zlprOK 2QW3G1j/NzoAIvAJSpJz+iWM4r8lcJA9TpCV8CkuXcn7JUyn84kazlCxXHGbHJma I= 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=fm2; bh=RUFSjM 4/Fd+pYxZbjTheW9WlowyYPE60E0F2CqgMsOU=; b=iq/LtoEAiiHRVVeE8wPWsA ne/Qs3NWiJYHosMoGlO9KEsXR8ExFrw6J3TbGSUewI4aRvy8jKYfMj49laeTfcqy vCET9k4lSvNRvBrVcNGwzy0y51Rpo9c2eW46BpyDARl2begjhPnG7NoZK6UoCIe2 KPFuIlDTmlp7TjRU+8mkJ8O1FkscO1z1JuOHaAvPXMI34huKZJYnNugNKa1yBLTR NrrJotbq0/3shOAO1Fj0M3BBLyxsllJEqZ47sgxxN6mpjfEr9ITOTaRrqNTmmzW/ Hp194rbjkxpZSJtfdK07IqMpRmM18Hz/aH0gFef1pBn8nyj1k/gxW55KLW6xBdlg == 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 03C6BE4449; Thu, 5 Apr 2018 12:49:32 -0400 (EDT) From: Thomas Monjalon To: Declan Doherty Cc: dev@dpdk.org, Alex Rosenbaum , Ferruh Yigit , Shahaf Shuler , Qi Zhang , Alejandro Lucero , Andrew Rybchenko , Mohammad Abdul Awal , Remy Horton , John McNamara , Rony Efraim , Jingjing Wu , Wenzhuo Lu , Yuanhan Liu , Bruce Richardson Date: Thu, 05 Apr 2018 18:49:32 +0200 Message-ID: <2392634.y0Dprd7BRi@xps> In-Reply-To: <20180405135148.16388-5-declan.doherty@intel.com> References: <20180405135148.16388-1-declan.doherty@intel.com> <20180405135148.16388-5-declan.doherty@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 4/4] ethdev: Add metadata flow and action items support 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, 05 Apr 2018 16:49:35 -0000 05/04/2018 15:51, Declan Doherty: > +struct rte_flow_item_metadata { > + uint32_t id; /**< field identifier */ > + uint32_t size; /**< field size */ > + uint8_t bytes[]; /**< field value */ > +}; Spotted C99 syntax of flexible array. Are we OK with all supported compilers?