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 460314334C; Fri, 17 Nov 2023 05:21:32 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 371814069D; Fri, 17 Nov 2023 05:21:32 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id B4AE940271 for ; Fri, 17 Nov 2023 05:21:30 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 1DF2220B74C0; Thu, 16 Nov 2023 20:21:30 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1DF2220B74C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1700194890; bh=vd49FCYMIR422YaQ/Q+fcKHZGb5Rc6248r0m5tChcEg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=OLlZQA1i1GoMpIwtyNO25+RmLz4kXHK4vhKR2Nkclx0C6lPk22+LPWRmqPIjRwHGu h6auqHTlIG1at7cPemFWLJTi8AOCrELK4r6oO5ZQXh4f353rpdQ/RscMFb3hFF7WRd eX0JRv0p298WTRtuJUyibzoTiRYr712BzvkpsjLo= Date: Thu, 16 Nov 2023 20:21:30 -0800 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org, Hemant Agrawal , Sachin Saxena Subject: Re: [PATCH v2 10/10] common/dpaxx: replace zero length array with flex array Message-ID: <20231117042130.GJ29596@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230113215205.125767-1-stephen@networkplumber.org> <20231117040432.131737-1-stephen@networkplumber.org> <20231117040432.131737-11-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231117040432.131737-11-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:22PM -0800, Stephen Hemminger wrote: > Zero length arrays are GNU extension. Replace with > standard flex array. > > Signed-off-by: Stephen Hemminger > --- Reviewed-by Tyler Retzlaff