From: Russell King - ARM Linux admin <linux@armlinux.org.uk>
To: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Arnd Bergmann <arnd@arndb.de>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Thomas Gleixner <tglx@linutronix.de>,
Enrico Weigelt <info@metux.net>,
Linux ARM <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] ARM: don't export unused return_address()
Date: Wed, 20 Nov 2019 09:07:45 +0000 [thread overview]
Message-ID: <20191120090744.GH25745@shell.armlinux.org.uk> (raw)
In-Reply-To: <CAK7LNARiQnc+A0j4ORC-M8ZcbtDYdRF7tU1Zv8Lbst-g8dqmVQ@mail.gmail.com>
On Wed, Nov 20, 2019 at 06:02:13PM +0900, Masahiro Yamada wrote:
> Hi Arnd,
>
>
>
> On Thu, Nov 14, 2019 at 2:01 AM Russell King - ARM Linux admin
> <linux@armlinux.org.uk> wrote:
> >
> > On Wed, Nov 13, 2019 at 02:15:00PM +0100, Geert Uytterhoeven wrote:
> > > Hi Russell,
> > >
> > > On Wed, Nov 13, 2019 at 12:45 PM Russell King - ARM Linux admin
> > > <linux@armlinux.org.uk> wrote:
> > > > On Wed, Nov 13, 2019 at 08:40:39PM +0900, Masahiro Yamada wrote:
> > > > > On Tue, Oct 1, 2019 at 11:31 PM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> > > > > > On Fri, Sep 6, 2019 at 5:47 PM Arnd Bergmann <arnd@arndb.de> wrote:
> > > > > > > Without the frame pointer enabled, return_address() is an inline
> > > > > > > function and does not need to be exported, as shown by this warning:
> > > > > > >
> > > > > > > WARNING: "return_address" [vmlinux] is a static EXPORT_SYMBOL_GPL
> > > > > > >
> > > > > > > Move the EXPORT_SYMBOL_GPL() into the #ifdef as well.
> > > > > > >
> > > > > > > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> > > > > >
> > > > > > Thanks for your patch!
> > > > > >
> > > > > > Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > > > > >
> > > > > > > --- a/arch/arm/kernel/return_address.c
> > > > > > > +++ b/arch/arm/kernel/return_address.c
> > > > > > > @@ -53,6 +53,7 @@ void *return_address(unsigned int level)
> > > > > > > return NULL;
> > > > > > > }
> > > > > > >
> > > > > >
> > > > > > Checkpatch doesn't like the empty line above:
> > > > > >
> > > > > > WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
> > > > > >
> > > > > > > +EXPORT_SYMBOL_GPL(return_address);
> > > > > > > +
> > > > > > > #endif /* if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) */
> > > > > > >
> > > > > > > -EXPORT_SYMBOL_GPL(return_address);
> > >
> > > > > What has happened to this patch?
> > > > >
> > > > > I still see this warning.
> > > >
> > > > Simple - it got merged, it caused build regressions, it got dropped.
> > > > A new version is pending me doing another round of patch merging.
> > >
> > > I believe that was not Arnd's patch, but Ben Dooks' alternative solution[*]?
> >
> > I don't keep track of who did what, sorry.
>
>
> Arnd,
>
> I believe this patch is the correct fix.
> Could you please put it into Russell's patch tracker?
> (patches@arm.linux.org.uk)
Is there something wrong with:
fb033c95c94c ARM: 8918/2: only build return_address() if needed
I haven't seen any build issues with that.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 12.1Mbps down 622kbps up
According to speedtest.net: 11.9Mbps down 500kbps up
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Russell King - ARM Linux admin <linux@armlinux.org.uk>
To: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Arnd Bergmann <arnd@arndb.de>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Thomas Gleixner <tglx@linutronix.de>,
Enrico Weigelt <info@metux.net>,
Linux ARM <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] ARM: don't export unused return_address()
Date: Wed, 20 Nov 2019 09:07:45 +0000 [thread overview]
Message-ID: <20191120090744.GH25745@shell.armlinux.org.uk> (raw)
In-Reply-To: <CAK7LNARiQnc+A0j4ORC-M8ZcbtDYdRF7tU1Zv8Lbst-g8dqmVQ@mail.gmail.com>
On Wed, Nov 20, 2019 at 06:02:13PM +0900, Masahiro Yamada wrote:
> Hi Arnd,
>
>
>
> On Thu, Nov 14, 2019 at 2:01 AM Russell King - ARM Linux admin
> <linux@armlinux.org.uk> wrote:
> >
> > On Wed, Nov 13, 2019 at 02:15:00PM +0100, Geert Uytterhoeven wrote:
> > > Hi Russell,
> > >
> > > On Wed, Nov 13, 2019 at 12:45 PM Russell King - ARM Linux admin
> > > <linux@armlinux.org.uk> wrote:
> > > > On Wed, Nov 13, 2019 at 08:40:39PM +0900, Masahiro Yamada wrote:
> > > > > On Tue, Oct 1, 2019 at 11:31 PM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> > > > > > On Fri, Sep 6, 2019 at 5:47 PM Arnd Bergmann <arnd@arndb.de> wrote:
> > > > > > > Without the frame pointer enabled, return_address() is an inline
> > > > > > > function and does not need to be exported, as shown by this warning:
> > > > > > >
> > > > > > > WARNING: "return_address" [vmlinux] is a static EXPORT_SYMBOL_GPL
> > > > > > >
> > > > > > > Move the EXPORT_SYMBOL_GPL() into the #ifdef as well.
> > > > > > >
> > > > > > > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> > > > > >
> > > > > > Thanks for your patch!
> > > > > >
> > > > > > Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > > > > >
> > > > > > > --- a/arch/arm/kernel/return_address.c
> > > > > > > +++ b/arch/arm/kernel/return_address.c
> > > > > > > @@ -53,6 +53,7 @@ void *return_address(unsigned int level)
> > > > > > > return NULL;
> > > > > > > }
> > > > > > >
> > > > > >
> > > > > > Checkpatch doesn't like the empty line above:
> > > > > >
> > > > > > WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
> > > > > >
> > > > > > > +EXPORT_SYMBOL_GPL(return_address);
> > > > > > > +
> > > > > > > #endif /* if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) */
> > > > > > >
> > > > > > > -EXPORT_SYMBOL_GPL(return_address);
> > >
> > > > > What has happened to this patch?
> > > > >
> > > > > I still see this warning.
> > > >
> > > > Simple - it got merged, it caused build regressions, it got dropped.
> > > > A new version is pending me doing another round of patch merging.
> > >
> > > I believe that was not Arnd's patch, but Ben Dooks' alternative solution[*]?
> >
> > I don't keep track of who did what, sorry.
>
>
> Arnd,
>
> I believe this patch is the correct fix.
> Could you please put it into Russell's patch tracker?
> (patches@arm.linux.org.uk)
Is there something wrong with:
fb033c95c94c ARM: 8918/2: only build return_address() if needed
I haven't seen any build issues with that.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 12.1Mbps down 622kbps up
According to speedtest.net: 11.9Mbps down 500kbps up
next prev parent reply other threads:[~2019-11-20 9:08 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-06 15:46 [PATCH] ARM: don't export unused return_address() Arnd Bergmann
2019-09-06 15:46 ` Arnd Bergmann
2019-09-24 5:15 ` Masahiro Yamada
2019-09-24 5:15 ` Masahiro Yamada
2019-10-01 14:31 ` Geert Uytterhoeven
2019-10-01 14:31 ` Geert Uytterhoeven
2019-11-13 11:40 ` Masahiro Yamada
2019-11-13 11:40 ` Masahiro Yamada
2019-11-13 11:45 ` Russell King - ARM Linux admin
2019-11-13 11:45 ` Russell King - ARM Linux admin
2019-11-13 13:15 ` Geert Uytterhoeven
2019-11-13 13:15 ` Geert Uytterhoeven
2019-11-13 17:00 ` Russell King - ARM Linux admin
2019-11-13 17:00 ` Russell King - ARM Linux admin
2019-11-20 9:02 ` Masahiro Yamada
2019-11-20 9:02 ` Masahiro Yamada
2019-11-20 9:07 ` Russell King - ARM Linux admin [this message]
2019-11-20 9:07 ` Russell King - ARM Linux admin
2019-11-20 9:42 ` Masahiro Yamada
2019-11-20 9:42 ` Masahiro Yamada
2019-11-20 9:51 ` Russell King - ARM Linux admin
2019-11-20 9:51 ` Russell King - ARM Linux admin
2019-11-20 10:07 ` Russell King - ARM Linux admin
2019-11-20 10:07 ` Russell King - ARM Linux admin
2019-11-20 10:23 ` Masahiro Yamada
2019-11-20 10:23 ` Masahiro Yamada
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=20191120090744.GH25745@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=arnd@arndb.de \
--cc=geert@linux-m68k.org \
--cc=info@metux.net \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=yamada.masahiro@socionext.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.