]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
timekeeping: Provide internal function __ktime_get_real_seconds
authorDengChao <chao.deng@linaro.org>
Sun, 13 Dec 2015 04:24:18 +0000 (12:24 +0800)
committerJohn Stultz <john.stultz@linaro.org>
Thu, 17 Dec 2015 00:50:55 +0000 (16:50 -0800)
In order to fix Y2038 issues in the ntp code we will need replace
get_seconds() with ktime_get_real_seconds() but as the ntp code uses
the timekeeping lock which is also used by ktime_get_real_seconds(),
we need a version without locking.
Add a new function __ktime_get_real_seconds() in timekeeping to
do this.

Reviewed-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: DengChao <chao.deng@linaro.org>
Signed-off-by: John Stultz <john.stultz@linaro.org>
kernel/time/timekeeping.c
kernel/time/timekeeping_internal.h

index d9249daf14ba8625304356331885c7674f67178b..21cc23918cbdd7ae190c7b182f5d3cb6a69f869e 100644 (file)
@@ -845,6 +845,19 @@ time64_t ktime_get_real_seconds(void)
 }
 EXPORT_SYMBOL_GPL(ktime_get_real_seconds);
 
+/**
+ * __ktime_get_real_seconds - The same as ktime_get_real_seconds
+ * but without the sequence counter protect. This internal function
+ * is called just when timekeeping lock is already held.
+ */
+time64_t __ktime_get_real_seconds(void)
+{
+       struct timekeeper *tk = &tk_core.timekeeper;
+
+       return tk->xtime_sec;
+}
+
+
 #ifdef CONFIG_NTP_PPS
 
 /**
index 4ea005a7f9dab06f30eacc93b2ef18604a321746..e20466ffc208b8a3dc13efebbd3feccea08c3fb6 100644 (file)
@@ -26,4 +26,6 @@ static inline cycle_t clocksource_delta(cycle_t now, cycle_t last, cycle_t mask)
 }
 #endif
 
+extern time64_t __ktime_get_real_seconds(void);
+
 #endif /* _TIMEKEEPING_INTERNAL_H */