lkml.org 
[lkml]   [2009]   [Jan]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: WARNING: at kernel/trace/ftrace.c:434 ftrace_bug+0xdb/0x2b1() in 2.6.29-rc1-next-20090116


On Fri, 16 Jan 2009, Eric Paris wrote:

> On Fri, 2009-01-16 at 19:47 -0500, Steven Rostedt wrote:
> > # mount -t debugfs none /sys/kernel/debug
> > # cat /sys/kernel/debug/tracing/dyn_ftrace_total_info
>
> [root@unused ~]# cat /sys/kernel/debug/tracing/dyn_ftrace_total_info
> 0 0 0
>
> > And perhaps, if possible, could I get a copy of the vmlinux that was
> > built, and a CONFIG to go with it.
>
> check out http://people.redhat.com/~eparis/ftrace
>
> You should find my config, the vmlinux, and my serial capture on that
> page. I'll build again right now without all of my filesystem
> notification patches to make sure they aren't somehow screwing things up
> (but I pretty seriously doubt it.)

Thanks,

Something messed up in the creating of the mcount section. The secton
that is used to find all the places to modify.

Here's the output of your dump:

[ 0.125980] ------------[ cut here ]------------
[ 0.125980] WARNING: at kernel/trace/ftrace.c:434
ftrace_bug+0xdb/0x2b1()
[ 0.125980] Hardware name: VMware Virtual Platform
[ 0.125980] Modules linked in:
[ 0.125980] Pid: 0, comm: swapper Not tainted 2.6.29-rc1-next-20090116
#256
[ 0.125980] Call Trace:
[ 0.125980] [<ffffffff810515bc>] warn_slowpath+0xd8/0xf7

[...]

[ 0.125980] ---[ end trace a7919e7f17c0a725 ]---
[ 0.125980] ftrace failed to modify [<ffffffff812234de>]
acpi_thermal_notify+0x7/0xc1
[ 0.125980] actual: 0f:1f:44:00:00

$ nm vmlinux |grep mcount_loc
ffffffff815bbb40 R __start_mcount_loc
ffffffff815e4df0 R __stop_mcount_loc

$ objdump -h vmlinux | grep __init_rodata
11 __init_rodata 000292b0 ffffffff815bbb40 00000000015bbb40 007bbb40 2**3


The __mcount_loc section, which is where the data is stored, is the first
section in the __init_rodata section. By doing:

$ readelf -x __init_rodata vmlinux |less

I get to see what is in that section:

Hex dump of section '__init_rodata':
0x815bbb40 11a00081 ffffffff 98a10081 ffffffff ................
0x815bbb50 4ba20081 ffffffff 60a20081 ffffffff K.......`.......
0x815bbb60 85a20081 ffffffff 98a30081 ffffffff ................
[...]
0x815d4710 df342281 ffffffff 51152281 ffffffff .4".....Q.".....
[...]
0x815d4830 b6332281 ffffffff df342281 ffffffff .3"......4".....

Notice the df342281 ffffffff in the 0x815d4710 line.
Also notice that you have that in the 0x815d4830 line as well. This proves
that we have two copies of the same function in the data section.


[ 0.125980] ftrace failed to modify [<ffffffff812234de>]
acpi_thermal_notify+0x7/0xc1
[ 0.125980] actual: 0f:1f:44:00:00


acpi_thermal_notify+0x7 is at ffffffff812234de, and unfortunately the dump
is in the wrong endian, but we do see that ffffffff812234df is listed
twice. The recorded pointer is to the mcount relocation address, and the
printed one ffffffff812234de is to the call site, which is one less than
the relocation pointer.


Now the question is, how did that get listed twice?

Could you do a:

$ objdump -Dr -j __mcount_loc drivers/acpi/thermal.o

and perhaps we can find a duplicate there?

Thanks,

-- Steve



\
 
 \ /
  Last update: 2009-01-17 03:57    [W:0.061 / U:0.112 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site