|
@@ -9,11 +9,11 @@
|
|
|
#define CREATE_TRACE_POINTS
|
|
|
#include <asm/trace/diag.h>
|
|
|
|
|
|
-EXPORT_TRACEPOINT_SYMBOL(diagnose);
|
|
|
+EXPORT_TRACEPOINT_SYMBOL(s390_diagnose);
|
|
|
|
|
|
static DEFINE_PER_CPU(unsigned int, diagnose_trace_depth);
|
|
|
|
|
|
-void trace_diagnose_norecursion(int diag_nr)
|
|
|
+void trace_s390_diagnose_norecursion(int diag_nr)
|
|
|
{
|
|
|
unsigned long flags;
|
|
|
unsigned int *depth;
|
|
@@ -22,7 +22,7 @@ void trace_diagnose_norecursion(int diag_nr)
|
|
|
depth = this_cpu_ptr(&diagnose_trace_depth);
|
|
|
if (*depth == 0) {
|
|
|
(*depth)++;
|
|
|
- trace_diagnose(diag_nr);
|
|
|
+ trace_s390_diagnose(diag_nr);
|
|
|
(*depth)--;
|
|
|
}
|
|
|
local_irq_restore(flags);
|