Explorar el Código

time: Add ktime_get_tai_ns()

Because it was the only clock for which we didn't have a _ns()
accessor yet.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Peter Zijlstra hace 10 años
padre
commit
fe5fba05b4
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      include/linux/timekeeping.h

+ 5 - 0
include/linux/timekeeping.h

@@ -214,6 +214,11 @@ static inline u64 ktime_get_boot_ns(void)
 	return ktime_to_ns(ktime_get_boottime());
 	return ktime_to_ns(ktime_get_boottime());
 }
 }
 
 
+static inline u64 ktime_get_tai_ns(void)
+{
+	return ktime_to_ns(ktime_get_clocktai());
+}
+
 static inline u64 ktime_get_raw_ns(void)
 static inline u64 ktime_get_raw_ns(void)
 {
 {
 	return ktime_to_ns(ktime_get_raw());
 	return ktime_to_ns(ktime_get_raw());