From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 1C3D0A0AC5 for ; Thu, 2 May 2019 14:32:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F0B3F2B89; Thu, 2 May 2019 14:32:53 +0200 (CEST) Received: from mail-vs1-f67.google.com (mail-vs1-f67.google.com [209.85.217.67]) by dpdk.org (Postfix) with ESMTP id 1D62F5B1C for ; Thu, 2 May 2019 14:32:53 +0200 (CEST) Received: by mail-vs1-f67.google.com with SMTP id g187so1238613vsc.8 for ; Thu, 02 May 2019 05:32:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=t/OGxO/CU38BLdSYp6D05tDNMWLEJ8Cq38n+NCKUB7E=; b=hbEuUV1lu8gXBrCmRqvC7frQ2kTbLwPJgPhR933Vix2p1E+VGcxTpI0g+BAN11GBf3 XmlOF7G9k9oEbpncoaVuVzDbNlBJLeZdiRa4q15qtkpsUPZFTJzC6HkMBb+u2/b/KDoT Ldl3S+hhJ7pnddERRKFxapg4EbmthjnKCbZgSKUI9vVN77k3AMw/cvi84nNVO64dKzlY dwu5g0yyUILpTFnu0DSxiW01BTNlPUfzDoy5YZ/WdCLjtKRlq+VXRHrSR5hPd4MzszJs pWk1afeO2jPARQo8r28XrAgHB2xUscRdcFdE2/xewL3exXiQhnu9POKmM//2TLJBYYNc d/Ig== X-Gm-Message-State: APjAAAXrWoV0feoNhPB0+TMZHYG2qT4I6ZeWYVfsuEu8JFZ/9vszwnhQ yKDRsqVmPMGYowAxsTARETqgF18VixXuur+d4VlD0g== X-Google-Smtp-Source: APXvYqwvpvh4Q2HAvWkcIRQq0qA/vmXUCz/u3v4ld7r+BqwraSa4vQXb8t2k9WFkqfQZAGPACV3mYLxPp3Yh9IYhd4g= X-Received: by 2002:a67:fa95:: with SMTP id f21mr1748747vsq.180.1556800372498; Thu, 02 May 2019 05:32:52 -0700 (PDT) MIME-Version: 1.0 References: <20190501195014.2938-1-bruce.richardson@intel.com> <8175150.iIoqqa2Iee@xps> In-Reply-To: <8175150.iIoqqa2Iee@xps> From: David Marchand Date: Thu, 2 May 2019 14:32:41 +0200 Message-ID: To: Thomas Monjalon Cc: Bruce Richardson , dev , dpdk stable Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH 0/4] fix warnings with gcc 9 on Fedora 30 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Thu, May 2, 2019 at 2:19 PM Thomas Monjalon wrote: > 01/05/2019 21:50, Bruce Richardson: > > This set of changes fixes warnings seen when compiling DPDK on Fedora 30. > > In most cases these warnings appear to be false positives, which means we > > have the option to just disable the warning. Because the changes required > > to the code to silence the warnings are fairly small I've chosen in all > cases > > to change the code rather than disable the warnings, but I'm open to > doing > > the opposite if it's felt it's a better solution. [One thing I didn't > like > > about disabling the warnings is that the disabling flags are not > supported > > by clang, so adding them involves compiler checks :-(] > > > > NOTE: this set does not cover all warnings with GCC9, but it does cover > > those seen when building with meson. There is still one warning disable > > flag needed when building with make, which will need a follow-on set to > > fix. > > > > Bruce Richardson (4): > > net/ixgbe: fix warning with GCC 9 on Fedora 30 > > bus/fslmc: fix printf of null pointer > > raw/skeleton_rawdev: fix warnings with GCC 9 on Fedora 30 > > raw/dpaa2_cmdif: fix warnings with GCC 9 on Fedora 30 > > Cc: stable@dpdk.org > > Applied, thanks > > I had a comment on patch 2, and the bigger problem is -Waddress-of-packed-member. The quicker solution for now is to downgrade it to warning only so that we can fix the parts later rather than globally disable it. -- David Marchand