From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753463AbcJVGzz (ORCPT ); Sat, 22 Oct 2016 02:55:55 -0400 Received: from mail-wm0-f45.google.com ([74.125.82.45]:37836 "EHLO mail-wm0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752111AbcJVGzx (ORCPT ); Sat, 22 Oct 2016 02:55:53 -0400 Date: Sat, 22 Oct 2016 08:55:48 +0200 From: Jiri Pirko To: Linus Torvalds Cc: Arnd Bergmann , "David S. Miller" , Alexander Duyck , Tom Herbert , Jiri Pirko , Hadar Hen Zion , Gao Feng , Eric Garver , Amir Vadai , Network Development , Linux Kernel Mailing List Subject: Re: [PATCH] flow_dissector: avoid uninitialized variable access Message-ID: <20161022065548.GA1625@nanopsycho.orion> References: <20161021155626.4020344-1-arnd@arndb.de> <20161021163118.GA2155@nanopsycho.orion> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.7.0 (2016-08-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Sat, Oct 22, 2016 at 03:48:48AM CEST, torvalds@linux-foundation.org wrote: >On Fri, Oct 21, 2016 at 9:31 AM, Jiri Pirko wrote: >> >> I don't see how vlan could be used uninitialized. But I understand that >> this is impossible for gcc to track it. Please just use uninitialized_var() > >Actually, I think we should never use "uninitialized_var()" except >possibly for arrays or structures that gcc can complain about. > >It's a horrible thing to use, in that it adds extra cruft to the >source code, and then shuts up a compiler warning (even the _reliable_ >warnings from gcc). > >It's much better to just initialize the variable, and if gcc some day >gets smarter and sees that it is unnecessary and always overwritten, >so much the better. The cost of initializing a single word is >basically zero. On the other hand, I would agrue that initializing a var to "some" value that is never used might confuse the reader. He would naturally try to understand the reason for that exact value in initialization.