Add fallback wrapper for kernels without CONFIG_HAVE_TRACE_CLOCK
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 11 May 2011 03:16:21 +0000 (23:16 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 11 May 2011 03:16:21 +0000 (23:16 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
ltt-ring-buffer-client.h
ltt-tracer.h
trace-clock.h [new file with mode: 0644]

index c2e53f35c697efc338c26e76d5599de28ba669db..248cee0ee5297a0e2b72f2425c009e662a4299c9 100644 (file)
@@ -10,7 +10,7 @@
 
 #include <linux/module.h>
 #include <linux/types.h>
-#include <linux/trace-clock.h>
+#include "trace-clock.h"
 #include "ltt-events.h"
 #include "ltt-tracer.h"
 
index 2f947b7eb4be31a233a7a5dde773a67226ad1da5..ef5e815b53afad7a6c202d0d77cf4898419ec5bb 100644 (file)
 #include <linux/cache.h>
 #include <linux/timex.h>
 #include <linux/wait.h>
-#include <linux/trace-clock.h>
 #include <asm/atomic.h>
 #include <asm/local.h>
 
+#include "trace-clock.h"
 #include "ltt-tracer-core.h"
 #include "ltt-events.h"
 
diff --git a/trace-clock.h b/trace-clock.h
new file mode 100644 (file)
index 0000000..ca09704
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * Copyright (C) 2011 Mathieu Desnoyers (mathieu.desnoyers@efficios.com)
+ *
+ * Contains LTTng trace clock mapping to LTTng trace clock or mainline monotonic
+ * clock. This wrapper depends on CONFIG_HIGH_RES_TIMERS=y.
+ *
+ * Dual LGPL v2.1/GPL v2 license.
+ */
+
+#ifndef _LTT_TRACE_CLOCK_H
+#define _LTT_TRACE_CLOCK_H
+
+#ifdef CONFIG_HAVE_TRACE_CLOCK
+#include <linux/trace-clock.h>
+#else /* CONFIG_HAVE_TRACE_CLOCK */
+
+#include <linux/hardirq.h>
+#include <linux/ktime.h>
+#include <linux/time.h>
+#include <linux/hrtimer.h>
+
+static inline u64 trace_clock_monotonic_wrapper(void)
+{
+       ktime_t ktime;
+
+       /*
+        * Refuse to trace from NMIs with this wrapper, because an NMI could
+        * nest over the xtime write seqlock and deadlock.
+        */
+       if (in_nmi())
+               return 0;
+
+       ktime = ktime_get();
+       return (u64) ktime.tv64;
+}
+
+static inline u32 trace_clock_read32(void)
+{
+       return (u32) trace_clock_monotonic_wrapper();
+}
+
+static inline u64 trace_clock_read64(void)
+{
+       return (u64) trace_clock_monotonic_wrapper();
+}
+
+static inline u64 trace_clock_frequency(void)
+{
+       return (u64)NSEC_PER_SEC;
+}
+
+static inline u32 trace_clock_freq_scale(void)
+{
+       return 1;
+}
+
+static inline int get_trace_clock(void)
+{
+       printk(KERN_WARNING "LTTng: Using mainline kernel monotonic clock.\n");
+       printk(KERN_WARNING "  * NMIs will not be traced,\n");
+       printk(KERN_WARNING "  * expect significant performance degradation compared to the\n");
+       printk(KERN_WARNING "    LTTng trace clocks.\n");
+       printk(KERN_WARNING "You should consider deploying a kernel with the the LTTng kernel\n");
+       printk(KERN_WARNING "patches, or, better, ask the Linux tracing maintainers to integrate\n");
+       printk(KERN_WARNING "them if you care deeply about this.\n");
+       return 0;
+}
+
+static inline void put_trace_clock(void)
+{
+}
+
+#endif /* CONFIG_HAVE_TRACE_CLOCK */
+
+#endif /* _LTT_TRACE_CLOCK_H */
This page took 0.02847 seconds and 4 git commands to generate.