X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=gettime.h;h=f1d619ad5bad5fc2b3dae6f60083b7ec2c291d61;hp=1c4a25c8770c854fb5b43f75069b394b487fe3e9;hb=114eadb2d1df6a86afdcc42a21310d8c5559e72d;hpb=ec2ea18e87fad6c42d6875cd4ee1bb25ef9b4627 diff --git a/gettime.h b/gettime.h index 1c4a25c8..f1d619ad 100644 --- a/gettime.h +++ b/gettime.h @@ -4,6 +4,7 @@ #include #include "arch/arch.h" +#include "lib/seqlock.h" /* * Clock sources @@ -15,27 +16,30 @@ enum fio_cs { CS_INVAL, }; +extern int fio_get_mono_time(struct timespec *); 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 timespec *fio_ts; +extern struct fio_ts { + struct seqlock seqlock; + struct timespec ts; +} *fio_ts; static inline int fio_gettime_offload(struct timespec *ts) { - time_t last_sec; + unsigned int seq; 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); + seq = read_seqlock_begin(&fio_ts->seqlock); + *ts = fio_ts->ts; + } while (read_seqlock_retry(&fio_ts->seqlock, seq)); return 1; }