blob: ce2f6955200321400daf284ac691dad589477074 [file] [log] [blame]
Vincenzo Frascino00b26472019-06-21 10:52:29 +01001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Generic userspace implementations of gettimeofday() and similar.
4 */
Vincenzo Frascino00b26472019-06-21 10:52:29 +01005#include <vdso/datapage.h>
6#include <vdso/helpers.h>
7
Thomas Gleixner9d90b932019-06-26 12:02:00 +02008#ifndef vdso_calc_delta
9/*
10 * Default implementation which works for all sane clocksources. That
11 * obviously excludes x86/TSC.
12 */
13static __always_inline
14u64 vdso_calc_delta(u64 cycles, u64 last, u64 mask, u32 mult)
15{
16 return ((cycles - last) & mask) * mult;
17}
18#endif
19
Christophe Leroy83452282020-02-07 13:39:03 +010020#ifndef vdso_shift_ns
21static __always_inline u64 vdso_shift_ns(u64 ns, u32 shift)
22{
23 return ns >> shift;
24}
25#endif
26
Thomas Gleixner1dff4152020-02-07 13:38:50 +010027#ifndef __arch_vdso_hres_capable
28static inline bool __arch_vdso_hres_capable(void)
29{
30 return true;
31}
32#endif
33
Christophe Leroyae12e082020-02-07 13:39:02 +010034#ifndef vdso_clocksource_ok
35static inline bool vdso_clocksource_ok(const struct vdso_data *vd)
36{
37 return vd->clock_mode != VDSO_CLOCKMODE_NONE;
38}
39#endif
40
Thomas Gleixner72ce7782020-06-06 23:51:16 +020041#ifndef vdso_cycles_ok
42static inline bool vdso_cycles_ok(u64 cycles)
43{
44 return true;
45}
46#endif
47
Thomas Gleixner660fd042019-11-12 01:27:09 +000048#ifdef CONFIG_TIME_NS
Christophe Leroy58efe9f2021-03-31 16:48:44 +000049static __always_inline int do_hres_timens(const struct vdso_data *vdns, clockid_t clk,
50 struct __kernel_timespec *ts)
Thomas Gleixner660fd042019-11-12 01:27:09 +000051{
Christophe Leroy808094f2021-03-31 16:48:45 +000052 const struct vdso_data *vd;
Thomas Gleixner660fd042019-11-12 01:27:09 +000053 const struct timens_offset *offs = &vdns->offset[clk];
54 const struct vdso_timestamp *vdso_ts;
55 u64 cycles, last, ns;
56 u32 seq;
57 s64 sec;
58
Christophe Leroy808094f2021-03-31 16:48:45 +000059 vd = vdns - (clk == CLOCK_MONOTONIC_RAW ? CS_RAW : CS_HRES_COARSE);
60 vd = __arch_get_timens_vdso_data(vd);
Thomas Gleixner660fd042019-11-12 01:27:09 +000061 if (clk != CLOCK_MONOTONIC_RAW)
62 vd = &vd[CS_HRES_COARSE];
63 else
64 vd = &vd[CS_RAW];
65 vdso_ts = &vd->basetime[clk];
66
67 do {
68 seq = vdso_read_begin(vd);
Thomas Gleixnerf86fd322020-02-07 13:38:59 +010069
Christophe Leroyae12e082020-02-07 13:39:02 +010070 if (unlikely(!vdso_clocksource_ok(vd)))
Thomas Gleixner5d51bee2020-02-07 13:38:55 +010071 return -1;
Thomas Gleixnerf86fd322020-02-07 13:38:59 +010072
Thomas Gleixner4c5a1162020-08-04 22:37:48 +020073 cycles = __arch_get_hw_counter(vd->clock_mode, vd);
Thomas Gleixner72ce7782020-06-06 23:51:16 +020074 if (unlikely(!vdso_cycles_ok(cycles)))
75 return -1;
Thomas Gleixner660fd042019-11-12 01:27:09 +000076 ns = vdso_ts->nsec;
77 last = vd->cycle_last;
Thomas Gleixner660fd042019-11-12 01:27:09 +000078 ns += vdso_calc_delta(cycles, last, vd->mask, vd->mult);
Christophe Leroy83452282020-02-07 13:39:03 +010079 ns = vdso_shift_ns(ns, vd->shift);
Thomas Gleixner660fd042019-11-12 01:27:09 +000080 sec = vdso_ts->sec;
81 } while (unlikely(vdso_read_retry(vd, seq)));
82
83 /* Add the namespace offset */
84 sec += offs->sec;
85 ns += offs->nsec;
86
87 /*
88 * Do this outside the loop: a race inside the loop could result
89 * in __iter_div_u64_rem() being extremely slow.
90 */
91 ts->tv_sec = sec + __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
92 ts->tv_nsec = ns;
93
94 return 0;
95}
96#else
Christophe Leroy808094f2021-03-31 16:48:45 +000097static __always_inline
98const struct vdso_data *__arch_get_timens_vdso_data(const struct vdso_data *vd)
Thomas Gleixner660fd042019-11-12 01:27:09 +000099{
100 return NULL;
101}
102
Christophe Leroy58efe9f2021-03-31 16:48:44 +0000103static __always_inline int do_hres_timens(const struct vdso_data *vdns, clockid_t clk,
104 struct __kernel_timespec *ts)
Thomas Gleixner660fd042019-11-12 01:27:09 +0000105{
106 return -EINVAL;
107}
108#endif
109
Andrei Vaginc9665332019-11-12 01:26:51 +0000110static __always_inline int do_hres(const struct vdso_data *vd, clockid_t clk,
Thomas Gleixner660fd042019-11-12 01:27:09 +0000111 struct __kernel_timespec *ts)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100112{
113 const struct vdso_timestamp *vdso_ts = &vd->basetime[clk];
114 u64 cycles, last, sec, ns;
115 u32 seq;
116
Thomas Gleixner1dff4152020-02-07 13:38:50 +0100117 /* Allows to compile the high resolution parts out */
118 if (!__arch_vdso_hres_capable())
119 return -1;
120
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100121 do {
Thomas Gleixner660fd042019-11-12 01:27:09 +0000122 /*
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100123 * Open coded to handle VDSO_CLOCKMODE_TIMENS. Time namespace
Thomas Gleixner660fd042019-11-12 01:27:09 +0000124 * enabled tasks have a special VVAR page installed which
125 * has vd->seq set to 1 and vd->clock_mode set to
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100126 * VDSO_CLOCKMODE_TIMENS. For non time namespace affected tasks
Thomas Gleixner660fd042019-11-12 01:27:09 +0000127 * this does not affect performance because if vd->seq is
128 * odd, i.e. a concurrent update is in progress the extra
129 * check for vd->clock_mode is just a few extra
130 * instructions while spin waiting for vd->seq to become
131 * even again.
132 */
133 while (unlikely((seq = READ_ONCE(vd->seq)) & 1)) {
134 if (IS_ENABLED(CONFIG_TIME_NS) &&
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100135 vd->clock_mode == VDSO_CLOCKMODE_TIMENS)
Thomas Gleixner660fd042019-11-12 01:27:09 +0000136 return do_hres_timens(vd, clk, ts);
137 cpu_relax();
138 }
139 smp_rmb();
140
Christophe Leroyae12e082020-02-07 13:39:02 +0100141 if (unlikely(!vdso_clocksource_ok(vd)))
Thomas Gleixner5d51bee2020-02-07 13:38:55 +0100142 return -1;
Thomas Gleixnerf86fd322020-02-07 13:38:59 +0100143
Thomas Gleixner4c5a1162020-08-04 22:37:48 +0200144 cycles = __arch_get_hw_counter(vd->clock_mode, vd);
Thomas Gleixner72ce7782020-06-06 23:51:16 +0200145 if (unlikely(!vdso_cycles_ok(cycles)))
146 return -1;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100147 ns = vdso_ts->nsec;
148 last = vd->cycle_last;
Thomas Gleixner9d90b932019-06-26 12:02:00 +0200149 ns += vdso_calc_delta(cycles, last, vd->mask, vd->mult);
Christophe Leroy83452282020-02-07 13:39:03 +0100150 ns = vdso_shift_ns(ns, vd->shift);
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100151 sec = vdso_ts->sec;
152 } while (unlikely(vdso_read_retry(vd, seq)));
153
154 /*
155 * Do this outside the loop: a race inside the loop could result
156 * in __iter_div_u64_rem() being extremely slow.
157 */
158 ts->tv_sec = sec + __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
159 ts->tv_nsec = ns;
160
161 return 0;
162}
163
Thomas Gleixner660fd042019-11-12 01:27:09 +0000164#ifdef CONFIG_TIME_NS
Christophe Leroy58efe9f2021-03-31 16:48:44 +0000165static __always_inline int do_coarse_timens(const struct vdso_data *vdns, clockid_t clk,
166 struct __kernel_timespec *ts)
Thomas Gleixner660fd042019-11-12 01:27:09 +0000167{
Christophe Leroy808094f2021-03-31 16:48:45 +0000168 const struct vdso_data *vd = __arch_get_timens_vdso_data(vdns);
Thomas Gleixner660fd042019-11-12 01:27:09 +0000169 const struct vdso_timestamp *vdso_ts = &vd->basetime[clk];
170 const struct timens_offset *offs = &vdns->offset[clk];
171 u64 nsec;
172 s64 sec;
173 s32 seq;
174
175 do {
176 seq = vdso_read_begin(vd);
177 sec = vdso_ts->sec;
178 nsec = vdso_ts->nsec;
179 } while (unlikely(vdso_read_retry(vd, seq)));
180
181 /* Add the namespace offset */
182 sec += offs->sec;
183 nsec += offs->nsec;
184
185 /*
186 * Do this outside the loop: a race inside the loop could result
187 * in __iter_div_u64_rem() being extremely slow.
188 */
189 ts->tv_sec = sec + __iter_div_u64_rem(nsec, NSEC_PER_SEC, &nsec);
190 ts->tv_nsec = nsec;
191 return 0;
192}
193#else
Christophe Leroy58efe9f2021-03-31 16:48:44 +0000194static __always_inline int do_coarse_timens(const struct vdso_data *vdns, clockid_t clk,
195 struct __kernel_timespec *ts)
Thomas Gleixner660fd042019-11-12 01:27:09 +0000196{
197 return -1;
198}
199#endif
200
Andrei Vaginc9665332019-11-12 01:26:51 +0000201static __always_inline int do_coarse(const struct vdso_data *vd, clockid_t clk,
202 struct __kernel_timespec *ts)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100203{
204 const struct vdso_timestamp *vdso_ts = &vd->basetime[clk];
205 u32 seq;
206
207 do {
Thomas Gleixner660fd042019-11-12 01:27:09 +0000208 /*
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100209 * Open coded to handle VDSO_CLOCK_TIMENS. See comment in
Thomas Gleixner660fd042019-11-12 01:27:09 +0000210 * do_hres().
211 */
212 while ((seq = READ_ONCE(vd->seq)) & 1) {
213 if (IS_ENABLED(CONFIG_TIME_NS) &&
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100214 vd->clock_mode == VDSO_CLOCKMODE_TIMENS)
Thomas Gleixner660fd042019-11-12 01:27:09 +0000215 return do_coarse_timens(vd, clk, ts);
216 cpu_relax();
217 }
218 smp_rmb();
219
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100220 ts->tv_sec = vdso_ts->sec;
221 ts->tv_nsec = vdso_ts->nsec;
222 } while (unlikely(vdso_read_retry(vd, seq)));
Christophe Leroy8463cf82019-12-23 14:31:07 +0000223
224 return 0;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100225}
226
Christophe Leroyb91c8c42020-04-28 13:16:53 +0000227static __always_inline int
Christophe Leroye876f0b2020-02-07 13:39:04 +0100228__cvdso_clock_gettime_common(const struct vdso_data *vd, clockid_t clock,
229 struct __kernel_timespec *ts)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100230{
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100231 u32 msk;
232
233 /* Check for negative values or invalid clocks */
234 if (unlikely((u32) clock >= MAX_CLOCKS))
Thomas Gleixner502a5902019-07-28 15:12:53 +0200235 return -1;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100236
237 /*
238 * Convert the clockid to a bitmask and use it to check which
239 * clocks are handled in the VDSO directly.
240 */
241 msk = 1U << clock;
Christophe Leroy8463cf82019-12-23 14:31:07 +0000242 if (likely(msk & VDSO_HRES))
Andrei Vaginc9665332019-11-12 01:26:51 +0000243 vd = &vd[CS_HRES_COARSE];
Christophe Leroy8463cf82019-12-23 14:31:07 +0000244 else if (msk & VDSO_COARSE)
245 return do_coarse(&vd[CS_HRES_COARSE], clock, ts);
246 else if (msk & VDSO_RAW)
Andrei Vaginc9665332019-11-12 01:26:51 +0000247 vd = &vd[CS_RAW];
248 else
249 return -1;
Christophe Leroy8463cf82019-12-23 14:31:07 +0000250
Andrei Vaginc9665332019-11-12 01:26:51 +0000251 return do_hres(vd, clock, ts);
Thomas Gleixner502a5902019-07-28 15:12:53 +0200252}
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100253
Thomas Gleixner502a5902019-07-28 15:12:53 +0200254static __maybe_unused int
Christophe Leroye876f0b2020-02-07 13:39:04 +0100255__cvdso_clock_gettime_data(const struct vdso_data *vd, clockid_t clock,
256 struct __kernel_timespec *ts)
Thomas Gleixner502a5902019-07-28 15:12:53 +0200257{
Christophe Leroye876f0b2020-02-07 13:39:04 +0100258 int ret = __cvdso_clock_gettime_common(vd, clock, ts);
Thomas Gleixner502a5902019-07-28 15:12:53 +0200259
260 if (unlikely(ret))
261 return clock_gettime_fallback(clock, ts);
262 return 0;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100263}
264
Christophe Leroye876f0b2020-02-07 13:39:04 +0100265static __maybe_unused int
266__cvdso_clock_gettime(clockid_t clock, struct __kernel_timespec *ts)
267{
268 return __cvdso_clock_gettime_data(__arch_get_vdso_data(), clock, ts);
269}
270
Vincenzo Frascinobf279842019-08-30 14:58:56 +0100271#ifdef BUILD_VDSO32
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100272static __maybe_unused int
Christophe Leroye876f0b2020-02-07 13:39:04 +0100273__cvdso_clock_gettime32_data(const struct vdso_data *vd, clockid_t clock,
274 struct old_timespec32 *res)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100275{
276 struct __kernel_timespec ts;
277 int ret;
278
Christophe Leroye876f0b2020-02-07 13:39:04 +0100279 ret = __cvdso_clock_gettime_common(vd, clock, &ts);
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100280
Thomas Gleixnerc60a32e2019-07-30 11:38:50 +0200281 if (unlikely(ret))
282 return clock_gettime32_fallback(clock, res);
Thomas Gleixner502a5902019-07-28 15:12:53 +0200283
Vincenzo Frascinoa2792352019-08-30 14:58:59 +0100284 /* For ret == 0 */
285 res->tv_sec = ts.tv_sec;
286 res->tv_nsec = ts.tv_nsec;
287
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100288 return ret;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100289}
Christophe Leroye876f0b2020-02-07 13:39:04 +0100290
291static __maybe_unused int
292__cvdso_clock_gettime32(clockid_t clock, struct old_timespec32 *res)
293{
294 return __cvdso_clock_gettime32_data(__arch_get_vdso_data(), clock, res);
295}
Vincenzo Frascinobf279842019-08-30 14:58:56 +0100296#endif /* BUILD_VDSO32 */
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100297
298static __maybe_unused int
Christophe Leroye876f0b2020-02-07 13:39:04 +0100299__cvdso_gettimeofday_data(const struct vdso_data *vd,
300 struct __kernel_old_timeval *tv, struct timezone *tz)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100301{
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100302
303 if (likely(tv != NULL)) {
304 struct __kernel_timespec ts;
305
306 if (do_hres(&vd[CS_HRES_COARSE], CLOCK_REALTIME, &ts))
307 return gettimeofday_fallback(tv, tz);
308
309 tv->tv_sec = ts.tv_sec;
310 tv->tv_usec = (u32)ts.tv_nsec / NSEC_PER_USEC;
311 }
312
313 if (unlikely(tz != NULL)) {
Thomas Gleixner660fd042019-11-12 01:27:09 +0000314 if (IS_ENABLED(CONFIG_TIME_NS) &&
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100315 vd->clock_mode == VDSO_CLOCKMODE_TIMENS)
Christophe Leroy808094f2021-03-31 16:48:45 +0000316 vd = __arch_get_timens_vdso_data(vd);
Thomas Gleixner660fd042019-11-12 01:27:09 +0000317
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100318 tz->tz_minuteswest = vd[CS_HRES_COARSE].tz_minuteswest;
319 tz->tz_dsttime = vd[CS_HRES_COARSE].tz_dsttime;
320 }
321
322 return 0;
323}
324
Christophe Leroye876f0b2020-02-07 13:39:04 +0100325static __maybe_unused int
326__cvdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100327{
Christophe Leroye876f0b2020-02-07 13:39:04 +0100328 return __cvdso_gettimeofday_data(__arch_get_vdso_data(), tv, tz);
329}
330
331#ifdef VDSO_HAS_TIME
332static __maybe_unused __kernel_old_time_t
333__cvdso_time_data(const struct vdso_data *vd, __kernel_old_time_t *time)
334{
Thomas Gleixner660fd042019-11-12 01:27:09 +0000335 __kernel_old_time_t t;
336
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100337 if (IS_ENABLED(CONFIG_TIME_NS) &&
338 vd->clock_mode == VDSO_CLOCKMODE_TIMENS)
Christophe Leroy808094f2021-03-31 16:48:45 +0000339 vd = __arch_get_timens_vdso_data(vd);
Thomas Gleixner660fd042019-11-12 01:27:09 +0000340
341 t = READ_ONCE(vd[CS_HRES_COARSE].basetime[CLOCK_REALTIME].sec);
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100342
343 if (time)
344 *time = t;
345
346 return t;
347}
Christophe Leroye876f0b2020-02-07 13:39:04 +0100348
349static __maybe_unused __kernel_old_time_t __cvdso_time(__kernel_old_time_t *time)
350{
351 return __cvdso_time_data(__arch_get_vdso_data(), time);
352}
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100353#endif /* VDSO_HAS_TIME */
354
355#ifdef VDSO_HAS_CLOCK_GETRES
356static __maybe_unused
Christophe Leroye876f0b2020-02-07 13:39:04 +0100357int __cvdso_clock_getres_common(const struct vdso_data *vd, clockid_t clock,
358 struct __kernel_timespec *res)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100359{
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100360 u32 msk;
Thomas Gleixner502a5902019-07-28 15:12:53 +0200361 u64 ns;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100362
363 /* Check for negative values or invalid clocks */
364 if (unlikely((u32) clock >= MAX_CLOCKS))
Thomas Gleixner502a5902019-07-28 15:12:53 +0200365 return -1;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100366
Thomas Gleixner2d6b01b2020-02-07 13:39:01 +0100367 if (IS_ENABLED(CONFIG_TIME_NS) &&
368 vd->clock_mode == VDSO_CLOCKMODE_TIMENS)
Christophe Leroy808094f2021-03-31 16:48:45 +0000369 vd = __arch_get_timens_vdso_data(vd);
Thomas Gleixner660fd042019-11-12 01:27:09 +0000370
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100371 /*
372 * Convert the clockid to a bitmask and use it to check which
373 * clocks are handled in the VDSO directly.
374 */
375 msk = 1U << clock;
Christophe Leroycdb7c5a2019-12-23 14:31:09 +0000376 if (msk & (VDSO_HRES | VDSO_RAW)) {
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100377 /*
378 * Preserves the behaviour of posix_get_hrtimer_res().
379 */
Christophe Leroy49a101d2020-01-16 17:58:27 +0000380 ns = READ_ONCE(vd[CS_HRES_COARSE].hrtimer_res);
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100381 } else if (msk & VDSO_COARSE) {
382 /*
383 * Preserves the behaviour of posix_get_coarse_res().
384 */
385 ns = LOW_RES_NSEC;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100386 } else {
Thomas Gleixner502a5902019-07-28 15:12:53 +0200387 return -1;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100388 }
389
Thomas Gleixner1638b8f2019-10-21 12:07:15 +0200390 if (likely(res)) {
391 res->tv_sec = 0;
392 res->tv_nsec = ns;
393 }
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100394 return 0;
Thomas Gleixner502a5902019-07-28 15:12:53 +0200395}
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100396
Vincenzo Frascinoffd08732019-11-28 11:17:19 +0000397static __maybe_unused
Christophe Leroye876f0b2020-02-07 13:39:04 +0100398int __cvdso_clock_getres_data(const struct vdso_data *vd, clockid_t clock,
399 struct __kernel_timespec *res)
Thomas Gleixner502a5902019-07-28 15:12:53 +0200400{
Christophe Leroye876f0b2020-02-07 13:39:04 +0100401 int ret = __cvdso_clock_getres_common(vd, clock, res);
Thomas Gleixner502a5902019-07-28 15:12:53 +0200402
403 if (unlikely(ret))
404 return clock_getres_fallback(clock, res);
405 return 0;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100406}
407
Christophe Leroye876f0b2020-02-07 13:39:04 +0100408static __maybe_unused
409int __cvdso_clock_getres(clockid_t clock, struct __kernel_timespec *res)
410{
411 return __cvdso_clock_getres_data(__arch_get_vdso_data(), clock, res);
412}
413
Vincenzo Frascinobf279842019-08-30 14:58:56 +0100414#ifdef BUILD_VDSO32
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100415static __maybe_unused int
Christophe Leroye876f0b2020-02-07 13:39:04 +0100416__cvdso_clock_getres_time32_data(const struct vdso_data *vd, clockid_t clock,
417 struct old_timespec32 *res)
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100418{
419 struct __kernel_timespec ts;
420 int ret;
421
Christophe Leroye876f0b2020-02-07 13:39:04 +0100422 ret = __cvdso_clock_getres_common(vd, clock, &ts);
Thomas Gleixnerc60a32e2019-07-30 11:38:50 +0200423
Thomas Gleixnerc60a32e2019-07-30 11:38:50 +0200424 if (unlikely(ret))
425 return clock_getres32_fallback(clock, res);
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100426
Vincenzo Frascinoa2792352019-08-30 14:58:59 +0100427 if (likely(res)) {
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100428 res->tv_sec = ts.tv_sec;
429 res->tv_nsec = ts.tv_nsec;
430 }
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100431 return ret;
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100432}
Christophe Leroye876f0b2020-02-07 13:39:04 +0100433
434static __maybe_unused int
435__cvdso_clock_getres_time32(clockid_t clock, struct old_timespec32 *res)
436{
437 return __cvdso_clock_getres_time32_data(__arch_get_vdso_data(),
438 clock, res);
439}
Vincenzo Frascinobf279842019-08-30 14:58:56 +0100440#endif /* BUILD_VDSO32 */
Vincenzo Frascino00b26472019-06-21 10:52:29 +0100441#endif /* VDSO_HAS_CLOCK_GETRES */