From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiri Pirko Subject: Re: [patch net-next 0/8] Add support for pipeline debug (dpipe) Date: Tue, 28 Mar 2017 10:05:46 +0200 Message-ID: <20170328080546.GE1873@nanopsycho.orion> References: <1490427342-2061-1-git-send-email-jiri@resnulli.us> <20170327.154834.1733255928137862540.davem@davemloft.net> <20170328065111.GA1873@nanopsycho.orion> <49d3604b-1bf9-c43f-cf25-626fe082fafb@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: David Miller , netdev@vger.kernel.org, arkadis@mellanox.com, idosch@mellanox.com, mlxsw@mellanox.com, jhs@mojatatu.com, roopa@cumulusnetworks.com, f.fainelli@gmail.com, vivien.didelot@savoirfairelinux.com, john.fastabend@gmail.com, andrew@lunn.ch, simon.horman@netronome.com To: Ivan Vecera Return-path: Received: from mail-wr0-f170.google.com ([209.85.128.170]:33865 "EHLO mail-wr0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754530AbdC1IGB (ORCPT ); Tue, 28 Mar 2017 04:06:01 -0400 Received: by mail-wr0-f170.google.com with SMTP id l43so91293321wre.1 for ; Tue, 28 Mar 2017 01:05:54 -0700 (PDT) Content-Disposition: inline In-Reply-To: <49d3604b-1bf9-c43f-cf25-626fe082fafb@redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: Tue, Mar 28, 2017 at 09:58:57AM CEST, ivecera@redhat.com wrote: >Dne 28.3.2017 v 08:51 Jiri Pirko napsal(a): >> Tue, Mar 28, 2017 at 12:48:34AM CEST, davem@davemloft.net wrote: >> > >> > Please fix up these warnings and resubmit: >> > >> > drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c: In function ‘mlxsw_sp_rif_counter_free’: >> > drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c:208:2: warning: ‘p_counter_index’ may be used uninitialized in this function [-Wmaybe-uninitialized] >> > mlxsw_sp_rif_counter_edit(mlxsw_sp, rif->rif_index, >> > ^ >> > drivers/net/ethernet/mellanox/mlxsw/spectrum_dpipe.c: In function ‘mlxsw_sp_table_erif_entries_dump’: >> > drivers/net/ethernet/mellanox/mlxsw/spectrum_dpipe.c:220:9: warning: missing braces around initializer [-Wmissing-braces] >> > struct devlink_dpipe_value match_value = {0}, action_value = {0}; >> >> I know about this warning. I believe that it is a gcc bug. It happens >> for gcc 4, but gcc 6 is silent, therefore I choose to ignore this. Do >> you still want me to fix it? >> >Yes, this is gcc bug (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53119). >The problem is the first member of struct is union so older gcc assumes >initializer like '{ { 0 } }' instead of '{ 0 }'. > >IMHO it should be better to workaround this bug for older gccs as gcc6 is not >only supported compiler. Okay. Thanks!