From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0A4CB4334C; Fri, 17 Nov 2023 05:20:59 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ECCB640DCE; Fri, 17 Nov 2023 05:20:58 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 6CCAC40271 for ; Fri, 17 Nov 2023 05:20:57 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id CB41A20B74C0; Thu, 16 Nov 2023 20:20:56 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com CB41A20B74C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1700194856; bh=za5mlC2hmLsEVwnwYBJUJoJtQVlnx7h6OBWNes5fqTg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YJz/mCuFeBy9lx9Z7rRuz5hkThXXRrBgtNKvH2kHTz5YwBefC9h4dsd9+GI2Xfi3r X3upmhPncJcuF/nHxBs87Idis0ZsEdwEFxjJlIWq0NwnIs5kiYpC0W/1zKm3rC+FaN G7ZZ1EqclQScsSbuAO+9P1l8ZgzzAkitfrrI0ju8= Date: Thu, 16 Nov 2023 20:20:56 -0800 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org, Yuying Zhang , Beilei Xing Subject: Re: [PATCH v2 09/10] net/cpfl: replace zero length array with flex array Message-ID: <20231117042056.GI29596@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230113215205.125767-1-stephen@networkplumber.org> <20231117040432.131737-1-stephen@networkplumber.org> <20231117040432.131737-10-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231117040432.131737-10-stephen@networkplumber.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Thu, Nov 16, 2023 at 08:03:21PM -0800, Stephen Hemminger wrote: > Zero length arrays are GNU extension. Replace with > standard flex array. > > Signed-off-by: Stephen Hemminger > --- Reviewed-by: Tyler Retzlaff