From: Dave Airlie <airlied@gmail.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Matt Fleming <matt@console-pimps.org>,
Ingo Molnar <mingo@elte.hu>,
Linus Torvalds <torvalds@linux-foundation.org>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
Paul Mackerras <paulus@samba.org>,
linux-kernel@vger.kernel.org,
Dave Jones <davej@codemonkey.org.uk>
Subject: Re: Please revert fc4c73554c9d93b3e495f2f7acae1323b0d5db84. Re: [PATCH 1/2] ftrace: Fix the conditional that updates $ref_func
Date: Thu, 6 Aug 2009 11:17:24 +1000 [thread overview]
Message-ID: <21d7e9970908051817u2f630d2ai2d4435fb79601bbb@mail.gmail.com> (raw)
In-Reply-To: <alpine.DEB.2.00.0908051720350.23591@gandalf.stny.rr.com>
On Thu, Aug 6, 2009 at 7:21 AM, Steven Rostedt<rostedt@goodmis.org> wrote:
>
> On Wed, 5 Aug 2009, Steven Rostedt wrote:
>
>>
>> On Wed, 5 Aug 2009, Dave Airlie wrote:
>>
>> > On Fri, Jul 24, 2009 at 2:16 AM, Matt Fleming<matt@console-pimps.org> wrote:
>> > > Fix the conditional that checks if we already have a $ref_func and that
>> > > the new function is weak. The code as previously checking whether either
>> > > condition was false, and we really need to only update $ref_func is both
>> > > cconditions are false.
>> > >
>> >
>> > This breaks the powerpc build on Fedora.
>> >
>> > When building on ppc64 this commit causes the links of drivers/hwmon/lm93.o
>> > to fail.
>> >
>> > It introduces an undefined symbol
>> > U .LM93_IN_FROM_REG
>> >
>> > that isn't produced when this patch is reverted
>> >
>> > This was found when the Fedora kernel failed to build when I pulled in
>> > -rc5-git3.
>> >
>> > can be seen at the end of:
>> > http://koji.fedoraproject.org/koji/getfile?taskID=1582002&name=build.log
>> >
>> > So can we revert this (at this stage in -rc5 or maybe fix it).
>> >
>>
>> I was not able to reproduce it, but could you see if this patch fixes the
>> issue?
>>
>
> Forget that one. I was finally able to reproduce it. This patch fixed it
> for me:
>
Doesn't seem to work here, I put the patch in on top of the Fedora
kernel instead of the previous one and got a link failure again in lm93.o
I'll reconfirm it now.
Dave.
> -- Steve
>
> diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
> index d29baa2..98e4afb 100755
> --- a/scripts/recordmcount.pl
> +++ b/scripts/recordmcount.pl
> @@ -135,6 +135,7 @@ $mv = "mv" if ((length $mv) == 0);
>
> my %locals; # List of local (static) functions
> my %weak; # List of weak functions
> +my %symbols; # List of symbols that are not local or weak
> my %convert; # List of local functions used that needs conversion
>
> my $type;
> @@ -318,6 +319,8 @@ while (<IN>) {
> $locals{$1} = 1;
> } elsif (/^[0-9a-fA-F]+\s+([wW])\s+(\S+)/) {
> $weak{$2} = $1;
> + } elsif (/^[0-9a-fA-F]+\s+(\S+)\s+(\S+)/) {
> + $symbols{$2} = $1;
> }
> }
> close(IN);
> @@ -408,13 +411,15 @@ while (<IN>) {
> # if this is either a local function or a weak function
> # keep looking for functions that are global that
> # we can use safely.
> - if (!defined($locals{$text}) && !defined($weak{$text})) {
> + if (!defined($locals{$text}) && !defined($weak{$text}) &&
> + defined($symbols{$text})) {
> $ref_func = $text;
> $read_function = 0;
> $offset = hex $1;
> } else {
> # if we already have a function, and this is weak, skip it
> - if (!defined($ref_func) && !defined($weak{$text})) {
> + if (!defined($ref_func) && defined($locals{$text}) &&
> + !defined($weak{$text})) {
> $ref_func = $text;
> $offset = hex $1;
> }
>
next prev parent reply other threads:[~2009-08-06 1:17 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-05 7:13 Dave Airlie
2009-08-05 8:13 ` Matt Fleming
2009-08-05 13:30 ` Steven Rostedt
2009-08-05 21:17 ` Dave Airlie
2009-08-05 19:33 ` Steven Rostedt
2009-08-05 21:21 ` Steven Rostedt
2009-08-06 1:17 ` Dave Airlie [this message]
2009-08-06 1:21 ` Steven Rostedt
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=21d7e9970908051817u2f630d2ai2d4435fb79601bbb@mail.gmail.com \
--to=airlied@gmail.com \
--cc=benh@kernel.crashing.org \
--cc=davej@codemonkey.org.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=matt@console-pimps.org \
--cc=mingo@elte.hu \
--cc=paulus@samba.org \
--cc=rostedt@goodmis.org \
--cc=torvalds@linux-foundation.org \
/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
all inboxes | Powered by JetHome®