X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wrapper%2Ftrace-clock.h;h=c51f8d3cf3652708dac979ad801b66ffc42683d0;hb=62bb62a5d874917e0f8003c49ec1306ca95e151d;hp=9f4e366afbcbeecc89302a2cb205b41b3e9012e5;hpb=9153ad231edfa178b83bb4c81891b7b812158b08;p=lttng-modules.git diff --git a/wrapper/trace-clock.h b/wrapper/trace-clock.h index 9f4e366a..c51f8d3c 100644 --- a/wrapper/trace-clock.h +++ b/wrapper/trace-clock.h @@ -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 * @@ -21,11 +21,11 @@ #include #include #include +#include #include #include #include #include -#include #include #include @@ -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(<tng_last_tsc); + last_tsc_ptr = this_cpu_ptr(<tng_last_tsc); last = *last_tsc_ptr; /* * Read "last" before "now". It is not strictly required, but it ensures