diff options
Diffstat (limited to 'include/linux/time.h')
-rw-r--r-- | include/linux/time.h | 65 |
1 files changed, 5 insertions, 60 deletions
diff --git a/include/linux/time.h b/include/linux/time.h index d5d229b2e5af..8c42cf8d2444 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
@@ -4,19 +4,10 @@ | |||
4 | # include <linux/cache.h> | 4 | # include <linux/cache.h> |
5 | # include <linux/seqlock.h> | 5 | # include <linux/seqlock.h> |
6 | # include <linux/math64.h> | 6 | # include <linux/math64.h> |
7 | #include <uapi/linux/time.h> | 7 | # include <linux/time64.h> |
8 | 8 | ||
9 | extern struct timezone sys_tz; | 9 | extern struct timezone sys_tz; |
10 | 10 | ||
11 | /* Parameters used to convert the timespec values: */ | ||
12 | #define MSEC_PER_SEC 1000L | ||
13 | #define USEC_PER_MSEC 1000L | ||
14 | #define NSEC_PER_USEC 1000L | ||
15 | #define NSEC_PER_MSEC 1000000L | ||
16 | #define USEC_PER_SEC 1000000L | ||
17 | #define NSEC_PER_SEC 1000000000L | ||
18 | #define FSEC_PER_SEC 1000000000000000LL | ||
19 | |||
20 | #define TIME_T_MAX (time_t)((1UL << ((sizeof(time_t) << 3) - 1)) - 1) | 11 | #define TIME_T_MAX (time_t)((1UL << ((sizeof(time_t) << 3) - 1)) - 1) |
21 | 12 | ||
22 | static inline int timespec_equal(const struct timespec *a, | 13 | static inline int timespec_equal(const struct timespec *a, |
@@ -84,13 +75,6 @@ static inline struct timespec timespec_sub(struct timespec lhs, | |||
84 | return ts_delta; | 75 | return ts_delta; |
85 | } | 76 | } |
86 | 77 | ||
87 | #define KTIME_MAX ((s64)~((u64)1 << 63)) | ||
88 | #if (BITS_PER_LONG == 64) | ||
89 | # define KTIME_SEC_MAX (KTIME_MAX / NSEC_PER_SEC) | ||
90 | #else | ||
91 | # define KTIME_SEC_MAX LONG_MAX | ||
92 | #endif | ||
93 | |||
94 | /* | 78 | /* |
95 | * Returns true if the timespec is norm, false if denorm: | 79 | * Returns true if the timespec is norm, false if denorm: |
96 | */ | 80 | */ |
@@ -115,27 +99,7 @@ static inline bool timespec_valid_strict(const struct timespec *ts) | |||
115 | return true; | 99 | return true; |
116 | } | 100 | } |
117 | 101 | ||
118 | extern bool persistent_clock_exist; | 102 | extern struct timespec timespec_trunc(struct timespec t, unsigned gran); |
119 | |||
120 | static inline bool has_persistent_clock(void) | ||
121 | { | ||
122 | return persistent_clock_exist; | ||
123 | } | ||
124 | |||
125 | extern void read_persistent_clock(struct timespec *ts); | ||
126 | extern void read_boot_clock(struct timespec *ts); | ||
127 | extern int persistent_clock_is_local; | ||
128 | extern int update_persistent_clock(struct timespec now); | ||
129 | void timekeeping_init(void); | ||
130 | extern int timekeeping_suspended; | ||
131 | |||
132 | unsigned long get_seconds(void); | ||
133 | struct timespec current_kernel_time(void); | ||
134 | struct timespec __current_kernel_time(void); /* does not take xtime_lock */ | ||
135 | struct timespec get_monotonic_coarse(void); | ||
136 | void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim, | ||
137 | struct timespec *wtom, struct timespec *sleep); | ||
138 | void timekeeping_inject_sleeptime(struct timespec *delta); | ||
139 | 103 | ||
140 | #define CURRENT_TIME (current_kernel_time()) | 104 | #define CURRENT_TIME (current_kernel_time()) |
141 | #define CURRENT_TIME_SEC ((struct timespec) { get_seconds(), 0 }) | 105 | #define CURRENT_TIME_SEC ((struct timespec) { get_seconds(), 0 }) |
@@ -153,33 +117,14 @@ void timekeeping_inject_sleeptime(struct timespec *delta); | |||
153 | extern u32 (*arch_gettimeoffset)(void); | 117 | extern u32 (*arch_gettimeoffset)(void); |
154 | #endif | 118 | #endif |
155 | 119 | ||
156 | extern void do_gettimeofday(struct timeval *tv); | ||
157 | extern int do_settimeofday(const struct timespec *tv); | ||
158 | extern int do_sys_settimeofday(const struct timespec *tv, | ||
159 | const struct timezone *tz); | ||
160 | #define do_posix_clock_monotonic_gettime(ts) ktime_get_ts(ts) | ||
161 | extern long do_utimes(int dfd, const char __user *filename, struct timespec *times, int flags); | ||
162 | struct itimerval; | 120 | struct itimerval; |
163 | extern int do_setitimer(int which, struct itimerval *value, | 121 | extern int do_setitimer(int which, struct itimerval *value, |
164 | struct itimerval *ovalue); | 122 | struct itimerval *ovalue); |
165 | extern unsigned int alarm_setitimer(unsigned int seconds); | ||
166 | extern int do_getitimer(int which, struct itimerval *value); | 123 | extern int do_getitimer(int which, struct itimerval *value); |
167 | extern int __getnstimeofday(struct timespec *tv); | ||
168 | extern void getnstimeofday(struct timespec *tv); | ||
169 | extern void getrawmonotonic(struct timespec *ts); | ||
170 | extern void getnstime_raw_and_real(struct timespec *ts_raw, | ||
171 | struct timespec *ts_real); | ||
172 | extern void getboottime(struct timespec *ts); | ||
173 | extern void monotonic_to_bootbased(struct timespec *ts); | ||
174 | extern void get_monotonic_boottime(struct timespec *ts); | ||
175 | 124 | ||
176 | extern struct timespec timespec_trunc(struct timespec t, unsigned gran); | 125 | extern unsigned int alarm_setitimer(unsigned int seconds); |
177 | extern int timekeeping_valid_for_hres(void); | 126 | |
178 | extern u64 timekeeping_max_deferment(void); | 127 | extern long do_utimes(int dfd, const char __user *filename, struct timespec *times, int flags); |
179 | extern int timekeeping_inject_offset(struct timespec *ts); | ||
180 | extern s32 timekeeping_get_tai_offset(void); | ||
181 | extern void timekeeping_set_tai_offset(s32 tai_offset); | ||
182 | extern void timekeeping_clocktai(struct timespec *ts); | ||
183 | 128 | ||
184 | struct tms; | 129 | struct tms; |
185 | extern void do_sys_times(struct tms *); | 130 | extern void do_sys_times(struct tms *); |