X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wrapper%2Ftrace-clock.h;h=3e8780da167ffa4b3c832eea7e8756c647091c29;hb=e36de50dd09527901339797a61a0a40d241c1a6d;hp=d2b7f19dba76e197738d055217250d38767bd816;hpb=2754583e7a52bb07e00d9c20f8f6790adb1bc503;p=lttng-modules.git diff --git a/wrapper/trace-clock.h b/wrapper/trace-clock.h index d2b7f19d..3e8780da 100644 --- a/wrapper/trace-clock.h +++ b/wrapper/trace-clock.h @@ -35,12 +35,12 @@ #include #include #include -#include "../lttng-kernel-version.h" -#include "../lttng-clock.h" -#include "percpu-defs.h" -#include "random.h" +#include +#include +#include +#include -#if ((LTTNG_KERNEL_RANGE(3,10,0, 3,10,14) && !LTTNG_RHEL_KERNEL_RANGE(3,10,0,7,0, 3,10,14,0,0)) \ +#if ((LTTNG_KERNEL_RANGE(3,10,0, 3,10,14) && !LTTNG_RHEL_KERNEL_RANGE(3,10,0,123,0,0, 3,10,14,0,0,0)) \ || LTTNG_KERNEL_RANGE(3,11,0, 3,11,3)) #error "Linux kernels 3.10 and 3.11 introduce a deadlock in the timekeeping subsystem. Fixed by commit 7bd36014460f793c19e7d6c94dab67b0afcfcb7f \"timekeeping: Fix HRTICK related deadlock from ntp lock changes\" in Linux." #endif @@ -93,7 +93,7 @@ static inline u64 trace_clock_fixup(u64 src_now, u64 last) #endif /* #else #if (BITS_PER_LONG == 32) */ /* - * Always called with preemption disabled. Can be interrupted. + * Sometimes called with preemption enabled. Can be interrupted. */ static inline u64 trace_clock_monotonic_wrapper(void) { @@ -102,6 +102,7 @@ static inline u64 trace_clock_monotonic_wrapper(void) local_t *last_tsc; /* Use fast nmi-safe monotonic clock provided by the Linux kernel. */ + preempt_disable(); last_tsc = lttng_this_cpu_ptr(<tng_last_tsc); last = local_read(last_tsc); /* @@ -115,6 +116,7 @@ static inline u64 trace_clock_monotonic_wrapper(void) if (((long) now - (long) last) < 0) now = trace_clock_fixup(now, last); result = local_cmpxchg(last_tsc, last, (unsigned long) now); + preempt_enable(); if (result == last) { /* Update done. */ return now; @@ -173,13 +175,13 @@ static inline const char *trace_clock_description_monotonic(void) #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)) static inline int get_trace_clock(void) { - printk(KERN_WARNING "LTTng: Using mainline kernel monotonic fast clock, which is NMI-safe.\n"); + printk_once(KERN_WARNING "LTTng: Using mainline kernel monotonic fast clock, which is NMI-safe.\n"); return 0; } #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)) */ static inline int get_trace_clock(void) { - printk(KERN_WARNING "LTTng: Using mainline kernel monotonic clock. NMIs will not be traced.\n"); + printk_once(KERN_WARNING "LTTng: Using mainline kernel monotonic clock. NMIs will not be traced.\n"); return 0; } #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)) */