X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=gettime.h;h=f1d619ad5bad5fc2b3dae6f60083b7ec2c291d61;hb=cb765e413e4d124355c3eec47f7ac8cd314a6951;hp=64651a1badb35ef2112e30cd46c69c857b9e4264;hpb=42634d2118b41f26151f5b708e83d40061570653;p=fio.git diff --git a/gettime.h b/gettime.h index 64651a1b..f1d619ad 100644 --- a/gettime.h +++ b/gettime.h @@ -1,6 +1,11 @@ #ifndef FIO_GETTIME_H #define FIO_GETTIME_H +#include + +#include "arch/arch.h" +#include "lib/seqlock.h" + /* * Clock sources */ @@ -11,11 +16,34 @@ enum fio_cs { CS_INVAL, }; -extern void fio_gettime(struct timeval *, void *); +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(void); + +extern struct fio_ts { + struct seqlock seqlock; + struct timespec ts; +} *fio_ts; + +static inline int fio_gettime_offload(struct timespec *ts) +{ + unsigned int seq; + + if (!fio_ts) + return 0; + + do { + seq = read_seqlock_begin(&fio_ts->seqlock); + *ts = fio_ts->ts; + } while (read_seqlock_retry(&fio_ts->seqlock, seq)); + + return 1; +} -extern struct timeval *fio_tv; +extern void fio_gtod_set_cpu(unsigned int cpu); #endif