X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=gettime.h;h=f92ee8c430c8d9cdb48f31effabd885af07c9257;hp=8ca379116a4bad23ff6c0c9e9086d2b88b2b020f;hb=83742c72e3d69b2d5c8a890b3803042b5fd1aae0;hpb=7d11f87148b8ec0f5627c701c934c752bf774029 diff --git a/gettime.h b/gettime.h index 8ca37911..f92ee8c4 100644 --- a/gettime.h +++ b/gettime.h @@ -1,6 +1,10 @@ #ifndef FIO_GETTIME_H #define FIO_GETTIME_H +#include + +#include "arch/arch.h" + /* * Clock sources */ @@ -11,12 +15,31 @@ enum fio_cs { CS_INVAL, }; -extern void fio_gettime(struct timeval *, void *); +extern void fio_gettime(struct timespec *, void *); extern void fio_gtod_init(void); extern void fio_clock_init(void); extern int fio_start_gtod_thread(void); -extern int fio_monotonic_clocktest(void); +extern int fio_monotonic_clocktest(int debug); +extern void fio_local_clock_init(void); + +extern struct timespec *fio_ts; + +static inline int fio_gettime_offload(struct timespec *ts) +{ + time_t last_sec; + + if (!fio_ts) + return 0; + + do { + read_barrier(); + last_sec = ts->tv_sec = fio_ts->tv_sec; + ts->tv_nsec = fio_ts->tv_nsec; + } while (fio_ts->tv_sec != last_sec); + + return 1; +} -extern struct timeval *fio_tv; +extern void fio_gtod_set_cpu(unsigned int cpu); #endif