Hi Geert,

On Mon, Apr 23, 2012 at 6:07 PM, Geert Uytterhoeven
<[email protected]> wrote:
> On Mon, Apr 23, 2012 at 15:50, Ezequiel Garcia <[email protected]> wrote:
>> Signed-off-by: Ezequiel Garcia <[email protected]>
>> ---
>> To define or to inline that is the question:
>> The current definition of flat_set_persistent produces a compiler
>> warning; arch/sh/ does it in a different way defining it to
>> a macro that uses persistent var. IMHO, an inline is easier to read.
>
> What's the compiler warning?
> It seems several other nommu arches use the same definition for
> flat_set_persistent()?
>

Here's the warning:
  fs/binfmt_flat.c: In function ‘load_flat_file’:
  fs/binfmt_flat.c:752: warning: unused variable ‘persistent’

Yes, every arch except sh is using the same definition.
My first thought was to extend the arch/sh definition:

  #define flat_set_persistent(relval, p)          ({ (void)p; 0; })

but in a conversation in the janitors list I was told that inlining
to a return-only function is a common pattern.
Plus, if you compare fs/built-in.o there is no extra code generated:

$ size fs-built-in-flat-inline
   text    data     bss     dec     hex filename
 233332    1908    1640  236880   39d50 built-in-flat-inline
$ size fs/built-in.o
   text    data     bss     dec     hex filename
 233332    1908    1640  236880   39d50 fs/built-in.o

FWIW, this is my compiler, I built it using gentoo's crossdev tool.
  gcc version 4.4.5 (Gentoo 4.4.5 p1.3, pie-0.4.5)

So, what's your opinion?
Thanks,
Ezequiel.
--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to