diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-06-12 04:26:44 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-06-12 04:27:38 -0400 |
commit | dfd9f7abc0fb67b5781f340d982384cea53b2884 (patch) | |
tree | 850baae88167699f45ba1dea1765b9156373db72 /arch/s390/kernel/early.c | |
parent | a2b53673fae14601bb520acf6a6f154463994565 (diff) |
[S390] ftrace: add dynamic ftrace support
Dynamic ftrace support for s390.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/early.c')
-rw-r--r-- | arch/s390/kernel/early.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/s390/kernel/early.c b/arch/s390/kernel/early.c index cf09948faad6..fb263736826c 100644 --- a/arch/s390/kernel/early.c +++ b/arch/s390/kernel/early.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/errno.h> | 11 | #include <linux/errno.h> |
12 | #include <linux/string.h> | 12 | #include <linux/string.h> |
13 | #include <linux/ctype.h> | 13 | #include <linux/ctype.h> |
14 | #include <linux/ftrace.h> | ||
14 | #include <linux/lockdep.h> | 15 | #include <linux/lockdep.h> |
15 | #include <linux/module.h> | 16 | #include <linux/module.h> |
16 | #include <linux/pfn.h> | 17 | #include <linux/pfn.h> |
@@ -410,5 +411,8 @@ void __init startup_init(void) | |||
410 | sclp_facilities_detect(); | 411 | sclp_facilities_detect(); |
411 | detect_memory_layout(memory_chunk); | 412 | detect_memory_layout(memory_chunk); |
412 | S390_lowcore.machine_flags = machine_flags; | 413 | S390_lowcore.machine_flags = machine_flags; |
414 | #ifdef CONFIG_DYNAMIC_FTRACE | ||
415 | S390_lowcore.ftrace_func = (unsigned long)ftrace_caller; | ||
416 | #endif | ||
413 | lockdep_on(); | 417 | lockdep_on(); |
414 | } | 418 | } |