From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4B4B1C43334 for ; Fri, 3 Jun 2022 11:13:40 +0000 (UTC) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7142E4069D; Fri, 3 Jun 2022 13:13:39 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 9E1C340694 for ; Fri, 3 Jun 2022 13:13:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654254817; x=1685790817; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=pEWY9N4BoEaS9U8h5aTPyjkfh9H/eYiRWOmOlXO2s7U=; b=llKE/9jPq+XJWmsEHtiO4Qc+iJSx3SDFEjULdY7BcCdLL0bsiI/iB8sf AJj8PoJbeYGtt14xiwOTA0EqifYJ5yWvTj9+DYrtTJ4IblSCtMk81+qho 4UfkQTTZi88iqSVgxK/2h3PbzTqF4uApo5Nm6IjIepO7lKNJt6D2LrLOq G30rqa9qkPjhvo+EaBi0UibInp9TUuRUWMmiN+qwM2tzuTUbRbYbqPXFQ UhaUId5a6gNdOudCn++mDY+FBJwOAgXx4tRRj8PB078DKSFcSmS4jru5t xPPzT4f/+YNmPORhRHWxc5ph9KYswG3yP5CyZQtBmDFJoYp7nMTmS5ZbY A==; X-IronPort-AV: E=McAfee;i="6400,9594,10366"; a="275030684" X-IronPort-AV: E=Sophos;i="5.91,274,1647327600"; d="scan'208";a="275030684" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Jun 2022 04:13:35 -0700 X-IronPort-AV: E=Sophos;i="5.91,274,1647327600"; d="scan'208";a="553290609" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.6.223]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 03 Jun 2022 04:13:34 -0700 Date: Fri, 3 Jun 2022 12:13:31 +0100 From: Bruce Richardson To: dev@dpdk.org Cc: david.marchand@redhat.com Subject: Re: [PATCH v3 0/4] clean up zero-length arrays Message-ID: References: <20220602150834.643745-1-bruce.richardson@intel.com> <20220603101331.1030993-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220603101331.1030993-1-bruce.richardson@intel.com> 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 Fri, Jun 03, 2022 at 11:13:27AM +0100, Bruce Richardson wrote: > This patchset adds a coccinelle script to clean-up zero-length > arrays in structures. The final patches are the result of running > that script on the DPDK repository. > > V3: Fixed issues in mlx5 drivers: > * fixed incorrect coccinelle replacement of 2-D zero-length arrays > * undid removal of "0" in tx elts[] which caused issues with Werror-pedantic > > V2: rebased to fix apply conflict > Still more build errors with these changes reported, V4 to follow...