blob: bf35c7164007b16353a0b6faa4aaa196154155fe [file] [log] [blame]
Jens Axboe02bcaa82006-11-24 10:42:00 +01001/*
Jens Axboef5cc0242006-11-24 10:47:40 +01002 * Clock functions
Jens Axboe02bcaa82006-11-24 10:42:00 +01003 */
Jens Axboef5cc0242006-11-24 10:47:40 +01004
Jens Axboe02bcaa82006-11-24 10:42:00 +01005#include <unistd.h>
Jens Axboec223da82010-03-24 13:23:53 +01006#include <math.h>
Jens Axboe02bcaa82006-11-24 10:42:00 +01007#include <sys/time.h>
Bruce Cran03e20d62011-01-02 20:14:54 +01008#include <time.h>
Jens Axboe02bcaa82006-11-24 10:42:00 +01009
10#include "fio.h"
Jens Axboebe4ecfd2008-12-08 14:10:52 +010011#include "smalloc.h"
Jens Axboe02bcaa82006-11-24 10:42:00 +010012
13#include "hash.h"
Jens Axboe7d11f872012-12-17 12:03:29 +010014#include "os/os.h"
Jens Axboe02bcaa82006-11-24 10:42:00 +010015
Jens Axboe09a32402010-08-15 15:01:51 -040016#ifdef ARCH_HAVE_CPU_CLOCK
Jens Axboec223da82010-03-24 13:23:53 +010017static unsigned long cycles_per_usec;
Jens Axboec223da82010-03-24 13:23:53 +010018static unsigned long last_cycles;
Jens Axboefa80fea2012-12-09 20:29:00 +010019int tsc_reliable = 0;
Jens Axboe09a32402010-08-15 15:01:51 -040020#endif
21static struct timeval last_tv;
Jens Axboe3e488922008-11-13 12:07:20 +010022static int last_tv_valid;
Jens Axboe02bcaa82006-11-24 10:42:00 +010023
Bruce Cran16de1bf2012-02-20 17:07:32 +000024enum fio_cs fio_clock_source = FIO_PREFERRED_CLOCK_SOURCE;
Jens Axboefa80fea2012-12-09 20:29:00 +010025int fio_clock_source_set = 0;
Jens Axboe01423ea2012-12-14 20:37:06 +010026enum fio_cs fio_clock_source_inited = CS_INVAL;
Jens Axboec223da82010-03-24 13:23:53 +010027
Jens Axboe02bcaa82006-11-24 10:42:00 +010028#ifdef FIO_DEBUG_TIME
29
30#define HASH_BITS 8
31#define HASH_SIZE (1 << HASH_BITS)
32
Jens Axboe01743ee2008-06-02 12:19:19 +020033static struct flist_head hash[HASH_SIZE];
Jens Axboe02bcaa82006-11-24 10:42:00 +010034static int gtod_inited;
35
36struct gtod_log {
Jens Axboe01743ee2008-06-02 12:19:19 +020037 struct flist_head list;
Jens Axboe02bcaa82006-11-24 10:42:00 +010038 void *caller;
39 unsigned long calls;
40};
41
42static struct gtod_log *find_hash(void *caller)
43{
44 unsigned long h = hash_ptr(caller, HASH_BITS);
Jens Axboe01743ee2008-06-02 12:19:19 +020045 struct flist_head *entry;
Jens Axboe02bcaa82006-11-24 10:42:00 +010046
Jens Axboe01743ee2008-06-02 12:19:19 +020047 flist_for_each(entry, &hash[h]) {
48 struct gtod_log *log = flist_entry(entry, struct gtod_log,
49 list);
Jens Axboe02bcaa82006-11-24 10:42:00 +010050
51 if (log->caller == caller)
52 return log;
53 }
54
55 return NULL;
56}
57
58static struct gtod_log *find_log(void *caller)
59{
60 struct gtod_log *log = find_hash(caller);
61
62 if (!log) {
63 unsigned long h;
64
65 log = malloc(sizeof(*log));
Jens Axboe01743ee2008-06-02 12:19:19 +020066 INIT_FLIST_HEAD(&log->list);
Jens Axboe02bcaa82006-11-24 10:42:00 +010067 log->caller = caller;
68 log->calls = 0;
69
70 h = hash_ptr(caller, HASH_BITS);
Jens Axboe01743ee2008-06-02 12:19:19 +020071 flist_add_tail(&log->list, &hash[h]);
Jens Axboe02bcaa82006-11-24 10:42:00 +010072 }
73
74 return log;
75}
76
77static void gtod_log_caller(void *caller)
78{
79 if (gtod_inited) {
80 struct gtod_log *log = find_log(caller);
81
82 log->calls++;
83 }
84}
85
86static void fio_exit fio_dump_gtod(void)
87{
88 unsigned long total_calls = 0;
89 int i;
90
91 for (i = 0; i < HASH_SIZE; i++) {
Jens Axboe01743ee2008-06-02 12:19:19 +020092 struct flist_head *entry;
Jens Axboe02bcaa82006-11-24 10:42:00 +010093 struct gtod_log *log;
94
Jens Axboe01743ee2008-06-02 12:19:19 +020095 flist_for_each(entry, &hash[i]) {
96 log = flist_entry(entry, struct gtod_log, list);
Jens Axboe02bcaa82006-11-24 10:42:00 +010097
Jens Axboe5ec10ea2008-03-06 15:42:00 +010098 printf("function %p, calls %lu\n", log->caller,
99 log->calls);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100100 total_calls += log->calls;
101 }
102 }
103
104 printf("Total %lu gettimeofday\n", total_calls);
105}
106
107static void fio_init gtod_init(void)
108{
109 int i;
110
111 for (i = 0; i < HASH_SIZE; i++)
Jens Axboe01743ee2008-06-02 12:19:19 +0200112 INIT_FLIST_HEAD(&hash[i]);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100113
114 gtod_inited = 1;
115}
116
117#endif /* FIO_DEBUG_TIME */
118
Jens Axboe1e97cce2006-12-05 11:44:16 +0100119#ifdef FIO_DEBUG_TIME
Jens Axboe02bcaa82006-11-24 10:42:00 +0100120void fio_gettime(struct timeval *tp, void *caller)
Jens Axboe1e97cce2006-12-05 11:44:16 +0100121#else
122void fio_gettime(struct timeval *tp, void fio_unused *caller)
123#endif
Jens Axboe02bcaa82006-11-24 10:42:00 +0100124{
125#ifdef FIO_DEBUG_TIME
126 if (!caller)
127 caller = __builtin_return_address(0);
128
129 gtod_log_caller(caller);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100130#endif
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100131 if (fio_tv) {
132 memcpy(tp, fio_tv, sizeof(*tp));
133 return;
Jens Axboec223da82010-03-24 13:23:53 +0100134 }
135
136 switch (fio_clock_source) {
137 case CS_GTOD:
Jens Axboe02bcaa82006-11-24 10:42:00 +0100138 gettimeofday(tp, NULL);
Jens Axboec223da82010-03-24 13:23:53 +0100139 break;
140 case CS_CGETTIME: {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100141 struct timespec ts;
142
Jens Axboe5bd9c782012-02-03 12:48:16 +0100143#ifdef FIO_HAVE_CLOCK_MONOTONIC
144 if (clock_gettime(CLOCK_MONOTONIC, &ts) < 0) {
145#else
Jens Axboed481e002009-12-04 09:56:32 +0100146 if (clock_gettime(CLOCK_REALTIME, &ts) < 0) {
Jens Axboe5bd9c782012-02-03 12:48:16 +0100147#endif
Jens Axboec223da82010-03-24 13:23:53 +0100148 log_err("fio: clock_gettime fails\n");
149 assert(0);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100150 }
151
152 tp->tv_sec = ts.tv_sec;
153 tp->tv_usec = ts.tv_nsec / 1000;
Jens Axboec223da82010-03-24 13:23:53 +0100154 break;
155 }
156#ifdef ARCH_HAVE_CPU_CLOCK
157 case CS_CPUCLOCK: {
158 unsigned long long usecs, t;
159
160 t = get_cpu_clock();
161 if (t < last_cycles) {
162 dprint(FD_TIME, "CPU clock going back in time\n");
163 t = last_cycles;
164 }
165
166 usecs = t / cycles_per_usec;
167 tp->tv_sec = usecs / 1000000;
168 tp->tv_usec = usecs % 1000000;
169 last_cycles = t;
170 break;
171 }
172#endif
173 default:
174 log_err("fio: invalid clock source %d\n", fio_clock_source);
175 break;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100176 }
Jens Axboe3e488922008-11-13 12:07:20 +0100177
178 /*
179 * If Linux is using the tsc clock on non-synced processors,
180 * sometimes time can appear to drift backwards. Fix that up.
181 */
182 if (last_tv_valid) {
183 if (tp->tv_sec < last_tv.tv_sec)
184 tp->tv_sec = last_tv.tv_sec;
185 else if (last_tv.tv_sec == tp->tv_sec &&
186 tp->tv_usec < last_tv.tv_usec)
187 tp->tv_usec = last_tv.tv_usec;
188 }
189 last_tv_valid = 1;
190 memcpy(&last_tv, tp, sizeof(*tp));
Jens Axboe02bcaa82006-11-24 10:42:00 +0100191}
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100192
Jens Axboe09a32402010-08-15 15:01:51 -0400193#ifdef ARCH_HAVE_CPU_CLOCK
Jens Axboec223da82010-03-24 13:23:53 +0100194static unsigned long get_cycles_per_usec(void)
195{
196 struct timeval s, e;
197 unsigned long long c_s, c_e;
198
199 gettimeofday(&s, NULL);
200 c_s = get_cpu_clock();
201 do {
202 unsigned long long elapsed;
203
204 gettimeofday(&e, NULL);
205 elapsed = utime_since(&s, &e);
Jens Axboe486332e2012-12-10 08:07:14 +0100206 if (elapsed >= 1280) {
Jens Axboec223da82010-03-24 13:23:53 +0100207 c_e = get_cpu_clock();
208 break;
209 }
210 } while (1);
211
Jens Axboec0110002012-12-10 08:29:03 +0100212 return (c_e - c_s + 127) >> 7;
Jens Axboec223da82010-03-24 13:23:53 +0100213}
214
Jens Axboefa80fea2012-12-09 20:29:00 +0100215#define NR_TIME_ITERS 50
216
Jens Axboe09a32402010-08-15 15:01:51 -0400217static void calibrate_cpu_clock(void)
Jens Axboec223da82010-03-24 13:23:53 +0100218{
219 double delta, mean, S;
Jens Axboefa80fea2012-12-09 20:29:00 +0100220 unsigned long avg, cycles[NR_TIME_ITERS];
Jens Axboec223da82010-03-24 13:23:53 +0100221 int i, samples;
222
Jens Axboec223da82010-03-24 13:23:53 +0100223 cycles[0] = get_cycles_per_usec();
224 S = delta = mean = 0.0;
Jens Axboefa80fea2012-12-09 20:29:00 +0100225 for (i = 0; i < NR_TIME_ITERS; i++) {
Jens Axboec223da82010-03-24 13:23:53 +0100226 cycles[i] = get_cycles_per_usec();
227 delta = cycles[i] - mean;
228 if (delta) {
229 mean += delta / (i + 1.0);
230 S += delta * (cycles[i] - mean);
231 }
232 }
233
Jens Axboefa80fea2012-12-09 20:29:00 +0100234 S = sqrt(S / (NR_TIME_ITERS - 1.0));
Jens Axboec223da82010-03-24 13:23:53 +0100235
236 samples = avg = 0;
Jens Axboefa80fea2012-12-09 20:29:00 +0100237 for (i = 0; i < NR_TIME_ITERS; i++) {
Jens Axboec223da82010-03-24 13:23:53 +0100238 double this = cycles[i];
239
Bruce Cran03e20d62011-01-02 20:14:54 +0100240 if ((fmax(this, mean) - fmin(this, mean)) > S)
Jens Axboec223da82010-03-24 13:23:53 +0100241 continue;
242 samples++;
243 avg += this;
244 }
245
Jens Axboefa80fea2012-12-09 20:29:00 +0100246 S /= (double) NR_TIME_ITERS;
Jens Axboe89db7272012-12-10 08:29:56 +0100247 mean /= 10.0;
Jens Axboec223da82010-03-24 13:23:53 +0100248
Jens Axboefa80fea2012-12-09 20:29:00 +0100249 for (i = 0; i < NR_TIME_ITERS; i++)
Jens Axboec223da82010-03-24 13:23:53 +0100250 dprint(FD_TIME, "cycles[%d]=%lu\n", i, cycles[i] / 10);
251
Jens Axboed7abad32012-12-10 10:15:59 +0100252 avg /= samples;
253 avg = (avg + 9) / 10;
Jens Axboec223da82010-03-24 13:23:53 +0100254 dprint(FD_TIME, "avg: %lu\n", avg);
255 dprint(FD_TIME, "mean=%f, S=%f\n", mean, S);
256
257 cycles_per_usec = avg;
Jens Axboe09a32402010-08-15 15:01:51 -0400258}
259#else
260static void calibrate_cpu_clock(void)
261{
262}
263#endif
264
265void fio_clock_init(void)
266{
Jens Axboe01423ea2012-12-14 20:37:06 +0100267 if (fio_clock_source == fio_clock_source_inited)
268 return;
269
Jens Axboe09a32402010-08-15 15:01:51 -0400270 last_tv_valid = 0;
Jens Axboe01423ea2012-12-14 20:37:06 +0100271 fio_clock_source_inited = fio_clock_source;
Jens Axboe09a32402010-08-15 15:01:51 -0400272 calibrate_cpu_clock();
Jens Axboefa80fea2012-12-09 20:29:00 +0100273
274 /*
275 * If the arch sets tsc_reliable != 0, then it must be good enough
276 * to use as THE clock source. For x86 CPUs, this means the TSC
277 * runs at a constant rate and is synced across CPU cores.
278 */
279 if (tsc_reliable) {
280 if (!fio_clock_source_set)
281 fio_clock_source = CS_CPUCLOCK;
282 } else if (fio_clock_source == CS_CPUCLOCK)
283 log_info("fio: clocksource=cpu may not be reliable\n");
Jens Axboec223da82010-03-24 13:23:53 +0100284}
285
Jens Axboe39ab7da2012-11-06 22:10:43 +0100286unsigned long long utime_since(struct timeval *s, struct timeval *e)
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100287{
Jens Axboe39ab7da2012-11-06 22:10:43 +0100288 long sec, usec;
289 unsigned long long ret;
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100290
Jens Axboe39ab7da2012-11-06 22:10:43 +0100291 sec = e->tv_sec - s->tv_sec;
292 usec = e->tv_usec - s->tv_usec;
293 if (sec > 0 && usec < 0) {
294 sec--;
295 usec += 1000000;
296 }
Jens Axboe783a3eb2012-02-09 10:27:10 +0100297
298 /*
Jens Axboe39ab7da2012-11-06 22:10:43 +0100299 * time warp bug on some kernels?
Jens Axboe783a3eb2012-02-09 10:27:10 +0100300 */
Jens Axboe39ab7da2012-11-06 22:10:43 +0100301 if (sec < 0 || (sec == 0 && usec < 0))
302 return 0;
Jens Axboe783a3eb2012-02-09 10:27:10 +0100303
Jens Axboe39ab7da2012-11-06 22:10:43 +0100304 ret = sec * 1000000ULL + usec;
305
306 return ret;
Jens Axboe783a3eb2012-02-09 10:27:10 +0100307}
308
Jens Axboe39ab7da2012-11-06 22:10:43 +0100309unsigned long long utime_since_now(struct timeval *s)
Jens Axboe783a3eb2012-02-09 10:27:10 +0100310{
Jens Axboe39ab7da2012-11-06 22:10:43 +0100311 struct timeval t;
Jens Axboe783a3eb2012-02-09 10:27:10 +0100312
Jens Axboe39ab7da2012-11-06 22:10:43 +0100313 fio_gettime(&t, NULL);
314 return utime_since(s, &t);
315}
Jens Axboe783a3eb2012-02-09 10:27:10 +0100316
Jens Axboe39ab7da2012-11-06 22:10:43 +0100317unsigned long mtime_since(struct timeval *s, struct timeval *e)
318{
319 long sec, usec, ret;
320
321 sec = e->tv_sec - s->tv_sec;
322 usec = e->tv_usec - s->tv_usec;
323 if (sec > 0 && usec < 0) {
324 sec--;
325 usec += 1000000;
Jens Axboe783a3eb2012-02-09 10:27:10 +0100326 }
327
Jens Axboe39ab7da2012-11-06 22:10:43 +0100328 if (sec < 0 || (sec == 0 && usec < 0))
329 return 0;
Jens Axboe783a3eb2012-02-09 10:27:10 +0100330
Jens Axboe39ab7da2012-11-06 22:10:43 +0100331 sec *= 1000UL;
332 usec /= 1000UL;
333 ret = sec + usec;
334
Jens Axboe783a3eb2012-02-09 10:27:10 +0100335 return ret;
336}
Jens Axboe39ab7da2012-11-06 22:10:43 +0100337
338unsigned long mtime_since_now(struct timeval *s)
339{
340 struct timeval t;
341 void *p = __builtin_return_address(0);
342
343 fio_gettime(&t, p);
344 return mtime_since(s, &t);
345}
346
347unsigned long time_since_now(struct timeval *s)
348{
349 return mtime_since_now(s) / 1000;
350}
Jens Axboe7d11f872012-12-17 12:03:29 +0100351
352#if defined(FIO_HAVE_CPU_AFFINITY) && defined(ARCH_HAVE_CPU_CLOCK)
353
354#define CLOCK_ENTRIES 100000
355
356struct clock_entry {
357 unsigned long seq;
358 unsigned long tsc;
359 unsigned long cpu;
360};
361
362struct clock_thread {
363 pthread_t thread;
364 int cpu;
365 pthread_mutex_t lock;
366 pthread_mutex_t started;
367 uint64_t *seq;
368 struct clock_entry *entries;
369};
370
371static inline uint64_t atomic64_inc_return(uint64_t *seq)
372{
373 return 1 + __sync_fetch_and_add(seq, 1);
374}
375
376static void *clock_thread_fn(void *data)
377{
378 struct clock_thread *t = data;
379 struct clock_entry *c;
380 os_cpu_mask_t cpu_mask;
381 int i;
382
383 memset(&cpu_mask, 0, sizeof(cpu_mask));
384 fio_cpu_set(&cpu_mask, t->cpu);
385
386 if (fio_setaffinity(gettid(), cpu_mask) == -1) {
387 log_err("clock setaffinity failed\n");
388 return (void *) 1;
389 }
390
391 pthread_mutex_unlock(&t->started);
392 pthread_mutex_lock(&t->lock);
393
394 c = &t->entries[0];
395 for (i = 0; i < CLOCK_ENTRIES; i++, c++) {
396 uint64_t seq, tsc;
397
398 c->cpu = t->cpu;
399 do {
400 seq = atomic64_inc_return(t->seq);
401 tsc = get_cpu_clock();
402 } while (seq != *t->seq);
403
404 c->seq = seq;
405 c->tsc = tsc;
406 }
407
408 log_info("cs: cpu%3d: %lu clocks seen\n", t->cpu, t->entries[CLOCK_ENTRIES - 1].tsc - t->entries[0].tsc);
409 return NULL;
410}
411
412static int clock_cmp(const void *p1, const void *p2)
413{
414 const struct clock_entry *c1 = p1;
415 const struct clock_entry *c2 = p2;
416
417 return c1->seq - c2->seq;
418}
419
420int fio_monotonic_clocktest(void)
421{
422 struct clock_thread *threads;
423 unsigned int nr_cpus = cpus_online();
424 struct clock_entry *entries;
425 unsigned long tentries, failed;
426 uint64_t seq = 0;
427 int i;
428
429 threads = malloc(nr_cpus * sizeof(struct clock_thread));
430 tentries = CLOCK_ENTRIES * nr_cpus;
431 entries = malloc(tentries * sizeof(struct clock_entry));
432
433 log_info("cs: Testing %u CPUs\n", nr_cpus);
434
435 for (i = 0; i < nr_cpus; i++) {
436 struct clock_thread *t = &threads[i];
437
438 t->cpu = i;
439 t->seq = &seq;
440 t->entries = &entries[i * CLOCK_ENTRIES];
441 pthread_mutex_init(&t->lock, NULL);
442 pthread_mutex_init(&t->started, NULL);
443 pthread_mutex_lock(&t->lock);
444 pthread_create(&t->thread, NULL, clock_thread_fn, t);
445 }
446
447 for (i = 0; i < nr_cpus; i++) {
448 struct clock_thread *t = &threads[i];
449
450 pthread_mutex_lock(&t->started);
451 }
452
453 for (i = 0; i < nr_cpus; i++) {
454 struct clock_thread *t = &threads[i];
455
456 pthread_mutex_unlock(&t->lock);
457 }
458
459 for (failed = i = 0; i < nr_cpus; i++) {
460 struct clock_thread *t = &threads[i];
461 void *ret;
462
463 pthread_join(t->thread, &ret);
464 if (ret)
465 failed++;
466 }
467 free(threads);
468
469 if (failed) {
470 log_err("Clocksource test: %u threads failed\n", failed);
471 goto err;
472 }
473
474 qsort(entries, tentries, sizeof(struct clock_entry), clock_cmp);
475
476 for (failed = i = 0; i < tentries; i++) {
477 struct clock_entry *prev, *this = &entries[i];
478
479 if (!i) {
480 prev = this;
481 continue;
482 }
483
484 if (prev->tsc > this->tsc) {
485 uint64_t diff = prev->tsc - this->tsc;
486
487 log_info("cs: CPU clock mismatch (diff=%lu):\n", diff);
488 log_info("\t CPU%3lu: TSC=%lu, SEQ=%lu\n", prev->cpu, prev->tsc, prev->seq);
489 log_info("\t CPU%3lu: TSC=%lu, SEQ=%lu\n", this->cpu, this->tsc, this->seq);
490 failed++;
491 }
492
493 prev = this;
494 }
495
496 if (failed)
497 log_info("cs: Failed: %lu\n", failed);
498 else
499 log_info("cs: Pass!\n");
500
501err:
502 free(entries);
503 return !!failed;
504}
505
506#else /* defined(FIO_HAVE_CPU_AFFINITY) && defined(ARCH_HAVE_CPU_CLOCK) */
507
508int fio_monotonic_clocktest(void)
509{
510 log_info("cs: current platform does not support CPU clocks\n");
511 return 0;
512}
513
514#endif