X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=gettime.h;h=c55f5cba779f5269e6fbc6b96c1e85e419d40683;hb=187f39063e1b0a7baeda20a9f4f2406327ec0d41;hp=eb3537b15b9d7b4fc29155b830e39b9dd108cd7a;hpb=aad918e47d119eb2043311f1a2a45ce109c047d1;p=fio.git diff --git a/gettime.h b/gettime.h index eb3537b1..c55f5cba 100644 --- a/gettime.h +++ b/gettime.h @@ -1,7 +1,10 @@ #ifndef FIO_GETTIME_H #define FIO_GETTIME_H +#include + #include "arch/arch.h" +#include "lib/seqlock.h" /* * Clock sources @@ -13,27 +16,29 @@ 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(int debug); -extern void fio_local_clock_init(int); +extern void fio_local_clock_init(void); -extern struct timeval *fio_tv; +extern struct fio_ts { + struct seqlock seqlock; + struct timespec ts; +} *fio_ts; -static inline int fio_gettime_offload(struct timeval *tv) +static inline int fio_gettime_offload(struct timespec *ts) { - size_t last_sec; + unsigned int seq; - if (!fio_tv) + if (!fio_ts) return 0; do { - read_barrier(); - last_sec = tv->tv_sec = fio_tv->tv_sec; - tv->tv_usec = fio_tv->tv_usec; - } while (fio_tv->tv_sec != last_sec); + seq = read_seqlock_begin(&fio_ts->seqlock); + *ts = fio_ts->ts; + } while (read_seqlock_retry(&fio_ts->seqlock, seq)); return 1; }