[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1538521591.193396.8.camel@acm.org>
Date: Tue, 02 Oct 2018 16:06:31 -0700
From: Bart Van Assche <bvanassche@....org>
To: Nick Desaulniers <ndesaulniers@...gle.com>
Cc: Nathan Chancellor <natechancellor@...il.com>, ooo@...ctrozaur.com,
"James E.J. Bottomley" <jejb@...ux.vnet.ibm.com>,
"Martin K. Petersen" <martin.petersen@...cle.com>,
linux-scsi@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] libosd: Remove ignored __weak attribute
On Tue, 2018-10-02 at 15:33 -0700, Nick Desaulniers wrote:
> On Tue, Oct 2, 2018 at 10:57 AM Bart Van Assche <bvanassche@....org> wrote:
> > Explicitly initialized global and static variables end up in the .data
> > section and need space in that section.
>
> Unless the initial value is zero.
> https://godbolt.org/z/curRoO
>
> So you don't wind up with an increase in binary size simply by having
> global variables initialized to zero, right? Instead the kernel knows
> to create a zero'd out mapping for bss. You don't need a run of zeros
> in the binary.
>
> So I disagree when you said earlier "zero initializers should be left
> out to minimize the size of object files." I assert they don't affect
> the size of the binary.
>
> If you had many global variables all initialized to zero, why would
> you encode that many zeros in a binary, when you can just set a size
> on the bss section and have the kernel create the appropriate sized
> and zero'd mapping?
>
> > That is not the case if the
> > initializer is left out and these variables end up in the .bss section.
>
> From my above link, gcc will put globals without initializers into "common."
No matter what particular compiler versions do with explicit initialization
to zero, the preferred kernel coding style is to leave out such explicit
initialization.
Bart.
Powered by blists - more mailing lists