fb7fcc96a8
The current_kernel_time64, get_monotonic_coarse64, getrawmonotonic64, get_monotonic_boottime64 and timekeeping_clocktai64 interfaces have rather inconsistent naming, and they differ in the calling conventions by passing the output either by reference or as a return value. Rename them to ktime_get_coarse_real_ts64, ktime_get_coarse_ts64, ktime_get_raw_ts64, ktime_get_boottime_ts64 and ktime_get_clocktai_ts64 respectively, and provide the interfaces with macros or inline functions as needed. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Stephen Boyd <sboyd@kernel.org> Cc: y2038@lists.linaro.org Cc: John Stultz <john.stultz@linaro.org> Link: https://lkml.kernel.org/r/20180427134016.2525989-4-arnd@arndb.de
100 lines
2 KiB
C
100 lines
2 KiB
C
#ifndef _LINUX_TIMEKEEPING32_H
|
|
#define _LINUX_TIMEKEEPING32_H
|
|
/*
|
|
* These interfaces are all based on the old timespec type
|
|
* and should get replaced with the timespec64 based versions
|
|
* over time so we can remove the file here.
|
|
*/
|
|
|
|
extern void do_gettimeofday(struct timeval *tv);
|
|
unsigned long get_seconds(void);
|
|
|
|
static inline struct timespec current_kernel_time(void)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
ktime_get_coarse_real_ts64(&ts64);
|
|
|
|
return timespec64_to_timespec(ts64);
|
|
}
|
|
|
|
/**
|
|
* Deprecated. Use do_settimeofday64().
|
|
*/
|
|
static inline int do_settimeofday(const struct timespec *ts)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
ts64 = timespec_to_timespec64(*ts);
|
|
return do_settimeofday64(&ts64);
|
|
}
|
|
|
|
static inline void getnstimeofday(struct timespec *ts)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
ktime_get_real_ts64(&ts64);
|
|
*ts = timespec64_to_timespec(ts64);
|
|
}
|
|
|
|
static inline void ktime_get_ts(struct timespec *ts)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
ktime_get_ts64(&ts64);
|
|
*ts = timespec64_to_timespec(ts64);
|
|
}
|
|
|
|
static inline void ktime_get_real_ts(struct timespec *ts)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
ktime_get_real_ts64(&ts64);
|
|
*ts = timespec64_to_timespec(ts64);
|
|
}
|
|
|
|
static inline void getrawmonotonic(struct timespec *ts)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
ktime_get_raw_ts64(&ts64);
|
|
*ts = timespec64_to_timespec(ts64);
|
|
}
|
|
|
|
static inline struct timespec get_monotonic_coarse(void)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
ktime_get_coarse_ts64(&ts64);
|
|
|
|
return timespec64_to_timespec(ts64);
|
|
}
|
|
|
|
static inline void getboottime(struct timespec *ts)
|
|
{
|
|
struct timespec64 ts64;
|
|
|
|
getboottime64(&ts64);
|
|
*ts = timespec64_to_timespec(ts64);
|
|
}
|
|
|
|
/*
|
|
* Timespec interfaces utilizing the ktime based ones
|
|
*/
|
|
static inline void get_monotonic_boottime(struct timespec *ts)
|
|
{
|
|
*ts = ktime_to_timespec(ktime_get_boottime());
|
|
}
|
|
|
|
static inline void timekeeping_clocktai(struct timespec *ts)
|
|
{
|
|
*ts = ktime_to_timespec(ktime_get_clocktai());
|
|
}
|
|
|
|
/*
|
|
* Persistent clock related interfaces
|
|
*/
|
|
extern void read_persistent_clock(struct timespec *ts);
|
|
extern int update_persistent_clock(struct timespec now);
|
|
|
|
#endif
|