dect
/
linux-2.6
Archived
13
0
Fork 0

ftrace, ia64: Add recordmcount for ia64

Add recordmcount for ia64.

Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Shaohua Li 2009-01-09 11:29:44 +08:00 committed by Ingo Molnar
parent f00012074b
commit 418071eb6a
1 changed files with 7 additions and 0 deletions

View File

@ -206,6 +206,13 @@ if ($arch eq "x86_64") {
$alignment = 2;
$section_type = '%progbits';
} elsif ($arch eq "ia64") {
$mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
$type = "data8";
if ($is_module eq "0") {
$cc .= " -mconstant-gp";
}
} else {
die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD";
}