From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: kernel-janitors@vger.kernel.org,
Richard Weinberger <richard@nod.at>,
David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org,
"Luis R . Rodriguez" <mcgrof@kernel.org>,
Josh Triplett <josh@joshtriplett.org>
Subject: Re: [PATCH 4/4] mtd: nandsim: add __init attribute
Date: Fri, 22 Apr 2016 11:13:24 +0200 [thread overview]
Message-ID: <20160422111324.3fa42372@bbrezillon> (raw)
In-Reply-To: <1461069215-22795-5-git-send-email-Julia.Lawall@lip6.fr>
On Tue, 19 Apr 2016 14:33:35 +0200
Julia Lawall <Julia.Lawall@lip6.fr> wrote:
> Add __init attribute on functions that are only called from other __init
> functions and that are not inlined, at least with gcc version 4.8.4 on an
> x86 machine with allyesconfig. Currently, the functions are put in the
> .text.unlikely segment. Declaring them as __init will cause them to be
> put in the .init.text and to disappear after initialization.
>
> The result of objdump -x on the functions before the change is as follows:
>
> 000000000000059a l F .text.unlikely 0000000000000239 alloc_device
> 000000000000034e l F .text.unlikely 000000000000002e get_partition_name
> 00000000000007d3 l F .text.unlikely 00000000000005da init_nandsim
>
> And after the change it is as follows:
>
> 0000000000000029 l F .init.text 0000000000000234 alloc_device
> 0000000000000000 l F .init.text 0000000000000029 get_partition_name
> 000000000000025d l F .init.text 00000000000005d5 init_nandsim
>
> Done with the help of Coccinelle. The semantic patch checks for local
> static non-init functions that are called from an __init function and are
> not called from any other function.
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
>
> ---
> drivers/mtd/nand/nandsim.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Applied, thanks.
Boris
--
Boris Brezillon, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
prev parent reply other threads:[~2016-04-22 9:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-19 12:33 [PATCH 0/4] add __init attribute Julia Lawall
2016-04-19 12:33 ` [PATCH 2/4] mtd: maps: " Julia Lawall
2016-04-26 6:20 ` Brian Norris
2016-04-19 12:33 ` [PATCH 3/4] mtd: pmc551: " Julia Lawall
2016-04-19 12:33 ` [PATCH 4/4] mtd: nandsim: " Julia Lawall
2016-04-22 9:13 ` Boris Brezillon [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160422111324.3fa42372@bbrezillon \
--to=boris.brezillon@free-electrons.com \
--cc=Julia.Lawall@lip6.fr \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=josh@joshtriplett.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=mcgrof@kernel.org \
--cc=richard@nod.at \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).