Commit cd3478f2bd8f2cec19f9247a8a9cd711cbe37683

Authored by Rabin Vincent
Committed by Russell King
1 parent e8a7e48bb2

ARM: 6509/1: ftrace: ignore any ftrace.o in C version of recordmcount

arch/arm/kernel/ftrace.c references mcount like kernel/tracing/ftrace.c,
so change the exclusion filter to match any ftrace.o.

Acked-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/recordmcount.c
... ... @@ -357,7 +357,7 @@
357 357 int
358 358 main(int argc, char const *argv[])
359 359 {
360   - const char ftrace[] = "kernel/trace/ftrace.o";
  360 + const char ftrace[] = "/ftrace.o";
361 361 int ftrace_size = sizeof(ftrace) - 1;
362 362 int n_error = 0; /* gcc-4.3.0 false positive complaint */
363 363