aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/timekeeping.h15
-rw-r--r--kernel/time/timekeeping.c11
2 files changed, 20 insertions, 6 deletions
diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h
index 6d76c6502892..e40a8d60fb21 100644
--- a/include/linux/timekeeping.h
+++ b/include/linux/timekeeping.h
@@ -26,7 +26,7 @@ struct timespec __current_kernel_time(void);
26 * timespec based interfaces 26 * timespec based interfaces
27 */ 27 */
28struct timespec get_monotonic_coarse(void); 28struct timespec get_monotonic_coarse(void);
29extern void getrawmonotonic(struct timespec *ts); 29extern void getrawmonotonic64(struct timespec64 *ts);
30extern void ktime_get_ts64(struct timespec64 *ts); 30extern void ktime_get_ts64(struct timespec64 *ts);
31 31
32extern int __getnstimeofday64(struct timespec64 *tv); 32extern int __getnstimeofday64(struct timespec64 *tv);
@@ -61,6 +61,11 @@ static inline void ktime_get_real_ts(struct timespec *ts)
61 getnstimeofday64(ts); 61 getnstimeofday64(ts);
62} 62}
63 63
64static inline void getrawmonotonic(struct timespec *ts)
65{
66 getrawmonotonic64(ts);
67}
68
64#else 69#else
65/** 70/**
66 * Deprecated. Use do_settimeofday64(). 71 * Deprecated. Use do_settimeofday64().
@@ -105,6 +110,14 @@ static inline void ktime_get_real_ts(struct timespec *ts)
105 getnstimeofday64(&ts64); 110 getnstimeofday64(&ts64);
106 *ts = timespec64_to_timespec(ts64); 111 *ts = timespec64_to_timespec(ts64);
107} 112}
113
114static inline void getrawmonotonic(struct timespec *ts)
115{
116 struct timespec64 ts64;
117
118 getrawmonotonic64(&ts64);
119 *ts = timespec64_to_timespec(ts64);
120}
108#endif 121#endif
109 122
110extern void getboottime(struct timespec *ts); 123extern void getboottime(struct timespec *ts);
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 2bde974437fd..2e5f63212269 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -894,12 +894,12 @@ int timekeeping_notify(struct clocksource *clock)
894} 894}
895 895
896/** 896/**
897 * getrawmonotonic - Returns the raw monotonic time in a timespec 897 * getrawmonotonic64 - Returns the raw monotonic time in a timespec
898 * @ts: pointer to the timespec to be set 898 * @ts: pointer to the timespec64 to be set
899 * 899 *
900 * Returns the raw monotonic time (completely un-modified by ntp) 900 * Returns the raw monotonic time (completely un-modified by ntp)
901 */ 901 */
902void getrawmonotonic(struct timespec *ts) 902void getrawmonotonic64(struct timespec64 *ts)
903{ 903{
904 struct timekeeper *tk = &tk_core.timekeeper; 904 struct timekeeper *tk = &tk_core.timekeeper;
905 struct timespec64 ts64; 905 struct timespec64 ts64;
@@ -914,9 +914,10 @@ void getrawmonotonic(struct timespec *ts)
914 } while (read_seqcount_retry(&tk_core.seq, seq)); 914 } while (read_seqcount_retry(&tk_core.seq, seq));
915 915
916 timespec64_add_ns(&ts64, nsecs); 916 timespec64_add_ns(&ts64, nsecs);
917 *ts = timespec64_to_timespec(ts64); 917 *ts = ts64;
918} 918}
919EXPORT_SYMBOL(getrawmonotonic); 919EXPORT_SYMBOL(getrawmonotonic64);
920
920 921
921/** 922/**
922 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres 923 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres