Commit 7e255d34 authored by Jerry Snitselaar's avatar Jerry Snitselaar Committed by Steven Rostedt

tracing: Export tracing clock functions

Critical tracepoint hooks should never call anything that takes a lock,
so they are unable to call getrawmonotonic() or ktime_get().

Export the rest of the tracing clock functions so can be used in
tracepoint hooks.

Background: We have a customer that adds their own module and registers
a tracepoint hook to sched_wakeup. They were using ktime_get() for a
time source, but it grabs a seq lock and caused a deadlock to occur.

Link: http://lkml.kernel.org/r/1430406624-22609-1-git-send-email-jsnitsel@redhat.comSigned-off-by: default avatarJerry Snitselaar <jsnitsel@redhat.com>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 755a27e7
...@@ -56,6 +56,7 @@ u64 notrace trace_clock(void) ...@@ -56,6 +56,7 @@ u64 notrace trace_clock(void)
{ {
return local_clock(); return local_clock();
} }
EXPORT_SYMBOL_GPL(trace_clock);
/* /*
* trace_jiffy_clock(): Simply use jiffies as a clock counter. * trace_jiffy_clock(): Simply use jiffies as a clock counter.
...@@ -68,6 +69,7 @@ u64 notrace trace_clock_jiffies(void) ...@@ -68,6 +69,7 @@ u64 notrace trace_clock_jiffies(void)
{ {
return jiffies_64_to_clock_t(jiffies_64 - INITIAL_JIFFIES); return jiffies_64_to_clock_t(jiffies_64 - INITIAL_JIFFIES);
} }
EXPORT_SYMBOL_GPL(trace_clock_jiffies);
/* /*
* trace_clock_global(): special globally coherent trace clock * trace_clock_global(): special globally coherent trace clock
...@@ -123,6 +125,7 @@ u64 notrace trace_clock_global(void) ...@@ -123,6 +125,7 @@ u64 notrace trace_clock_global(void)
return now; return now;
} }
EXPORT_SYMBOL_GPL(trace_clock_global);
static atomic64_t trace_counter; static atomic64_t trace_counter;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment