wrapper: remove percpu-defs.h wrapper
[lttng-modules.git] / wrapper / trace-clock.h
index 9f4e366afbcbeecc89302a2cb205b41b3e9012e5..c51f8d3cf3652708dac979ad801b66ffc42683d0 100644 (file)
@@ -1,4 +1,4 @@
-/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
+/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
  *
  * wrapper/trace-clock.h
  *
 #include <linux/hrtimer.h>
 #include <linux/percpu.h>
 #include <linux/version.h>
+#include <linux/percpu-defs.h>
 #include <asm/local.h>
 #include <lttng-kernel-version.h>
 #include <lttng-clock.h>
 #include <wrapper/compiler.h>
-#include <wrapper/percpu-defs.h>
 #include <wrapper/random.h>
 #include <blacklist/timekeeping.h>
 
@@ -71,7 +71,7 @@ static inline u64 trace_clock_monotonic_wrapper(void)
 
        /* Use fast nmi-safe monotonic clock provided by the Linux kernel. */
        preempt_disable();
-       last_tsc_ptr = lttng_this_cpu_ptr(&lttng_last_tsc);
+       last_tsc_ptr = this_cpu_ptr(&lttng_last_tsc);
        last = *last_tsc_ptr;
        /*
         * Read "last" before "now". It is not strictly required, but it ensures
This page took 0.024544 seconds and 4 git commands to generate.