diff options
Diffstat (limited to 'arch/s390/kernel/trace.c')
-rw-r--r-- | arch/s390/kernel/trace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/s390/kernel/trace.c b/arch/s390/kernel/trace.c index 73239bb576c4..21a5df99552b 100644 --- a/arch/s390/kernel/trace.c +++ b/arch/s390/kernel/trace.c | |||
@@ -9,11 +9,11 @@ | |||
9 | #define CREATE_TRACE_POINTS | 9 | #define CREATE_TRACE_POINTS |
10 | #include <asm/trace/diag.h> | 10 | #include <asm/trace/diag.h> |
11 | 11 | ||
12 | EXPORT_TRACEPOINT_SYMBOL(diagnose); | 12 | EXPORT_TRACEPOINT_SYMBOL(s390_diagnose); |
13 | 13 | ||
14 | static DEFINE_PER_CPU(unsigned int, diagnose_trace_depth); | 14 | static DEFINE_PER_CPU(unsigned int, diagnose_trace_depth); |
15 | 15 | ||
16 | void trace_diagnose_norecursion(int diag_nr) | 16 | void trace_s390_diagnose_norecursion(int diag_nr) |
17 | { | 17 | { |
18 | unsigned long flags; | 18 | unsigned long flags; |
19 | unsigned int *depth; | 19 | unsigned int *depth; |
@@ -22,7 +22,7 @@ void trace_diagnose_norecursion(int diag_nr) | |||
22 | depth = this_cpu_ptr(&diagnose_trace_depth); | 22 | depth = this_cpu_ptr(&diagnose_trace_depth); |
23 | if (*depth == 0) { | 23 | if (*depth == 0) { |
24 | (*depth)++; | 24 | (*depth)++; |
25 | trace_diagnose(diag_nr); | 25 | trace_s390_diagnose(diag_nr); |
26 | (*depth)--; | 26 | (*depth)--; |
27 | } | 27 | } |
28 | local_irq_restore(flags); | 28 | local_irq_restore(flags); |