diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-17 11:38:17 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-17 11:38:17 -0400 |
commit | 9fa111372a54f695f65e0de2f2a2108fe6cf3584 (patch) | |
tree | b8babd78dcbd07346a8964f2f905235381121131 /lib | |
parent | 8e9509c827a28e2f365c203c04224f9e9dd1b63a (diff) |
ftrace: fix lockup with MAXSMP
MAXSMP brings in lots of use of various bitops in smp_processor_id()
and friends - causing ftrace to lock up during bootup:
calling anon_inode_init+0x0/0x130
initcall anon_inode_init+0x0/0x130 returned 0 after 0 msecs
calling acpi_event_init+0x0/0x57
[ hard hang ]
So exclude the bitops facilities from tracing.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 2c62a9c06fbe..d90d31102e05 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -15,6 +15,9 @@ CFLAGS_REMOVE_string.o = -pg | |||
15 | CFLAGS_REMOVE_spinlock_debug.o = -pg | 15 | CFLAGS_REMOVE_spinlock_debug.o = -pg |
16 | CFLAGS_REMOVE_list_debug.o = -pg | 16 | CFLAGS_REMOVE_list_debug.o = -pg |
17 | CFLAGS_REMOVE_debugobjects.o = -pg | 17 | CFLAGS_REMOVE_debugobjects.o = -pg |
18 | CFLAGS_REMOVE_find_next_bit.o = -pg | ||
19 | CFLAGS_REMOVE_cpumask.o = -pg | ||
20 | CFLAGS_REMOVE_bitmap.o = -pg | ||
18 | endif | 21 | endif |
19 | 22 | ||
20 | lib-$(CONFIG_MMU) += ioremap.o | 23 | lib-$(CONFIG_MMU) += ioremap.o |