gettime: add basic init cpuclock test
[fio.git] / gettime.c
... / ...
CommitLineData
1/*
2 * Clock functions
3 */
4
5#include <unistd.h>
6#include <math.h>
7#include <sys/time.h>
8#include <time.h>
9
10#include "fio.h"
11#include "smalloc.h"
12
13#include "hash.h"
14#include "os/os.h"
15
16#if defined(ARCH_HAVE_CPU_CLOCK) && !defined(ARCH_CPU_CLOCK_CYCLES_PER_USEC)
17static unsigned long cycles_per_usec;
18static unsigned long inv_cycles_per_usec;
19static uint64_t max_cycles_for_mult;
20static unsigned long long cycles_start, cycles_wrap;
21#endif
22int tsc_reliable = 0;
23
24struct tv_valid {
25 uint64_t last_cycles;
26 int last_tv_valid;
27 int warned;
28};
29#ifdef ARCH_HAVE_CPU_CLOCK
30#ifdef CONFIG_TLS_THREAD
31static __thread struct tv_valid static_tv_valid;
32#else
33static pthread_key_t tv_tls_key;
34#endif
35#endif
36
37enum fio_cs fio_clock_source = FIO_PREFERRED_CLOCK_SOURCE;
38int fio_clock_source_set = 0;
39static enum fio_cs fio_clock_source_inited = CS_INVAL;
40
41#ifdef FIO_DEBUG_TIME
42
43#define HASH_BITS 8
44#define HASH_SIZE (1 << HASH_BITS)
45
46static struct flist_head hash[HASH_SIZE];
47static int gtod_inited;
48
49struct gtod_log {
50 struct flist_head list;
51 void *caller;
52 unsigned long calls;
53};
54
55static struct gtod_log *find_hash(void *caller)
56{
57 unsigned long h = hash_ptr(caller, HASH_BITS);
58 struct flist_head *entry;
59
60 flist_for_each(entry, &hash[h]) {
61 struct gtod_log *log = flist_entry(entry, struct gtod_log,
62 list);
63
64 if (log->caller == caller)
65 return log;
66 }
67
68 return NULL;
69}
70
71static void inc_caller(void *caller)
72{
73 struct gtod_log *log = find_hash(caller);
74
75 if (!log) {
76 unsigned long h;
77
78 log = malloc(sizeof(*log));
79 INIT_FLIST_HEAD(&log->list);
80 log->caller = caller;
81 log->calls = 0;
82
83 h = hash_ptr(caller, HASH_BITS);
84 flist_add_tail(&log->list, &hash[h]);
85 }
86
87 log->calls++;
88}
89
90static void gtod_log_caller(void *caller)
91{
92 if (gtod_inited)
93 inc_caller(caller);
94}
95
96static void fio_exit fio_dump_gtod(void)
97{
98 unsigned long total_calls = 0;
99 int i;
100
101 for (i = 0; i < HASH_SIZE; i++) {
102 struct flist_head *entry;
103 struct gtod_log *log;
104
105 flist_for_each(entry, &hash[i]) {
106 log = flist_entry(entry, struct gtod_log, list);
107
108 printf("function %p, calls %lu\n", log->caller,
109 log->calls);
110 total_calls += log->calls;
111 }
112 }
113
114 printf("Total %lu gettimeofday\n", total_calls);
115}
116
117static void fio_init gtod_init(void)
118{
119 int i;
120
121 for (i = 0; i < HASH_SIZE; i++)
122 INIT_FLIST_HEAD(&hash[i]);
123
124 gtod_inited = 1;
125}
126
127#endif /* FIO_DEBUG_TIME */
128
129#ifdef CONFIG_CLOCK_GETTIME
130static int fill_clock_gettime(struct timespec *ts)
131{
132#ifdef CONFIG_CLOCK_MONOTONIC
133 return clock_gettime(CLOCK_MONOTONIC, ts);
134#else
135 return clock_gettime(CLOCK_REALTIME, ts);
136#endif
137}
138#endif
139
140static void __fio_gettime(struct timeval *tp)
141{
142 switch (fio_clock_source) {
143#ifdef CONFIG_GETTIMEOFDAY
144 case CS_GTOD:
145 gettimeofday(tp, NULL);
146 break;
147#endif
148#ifdef CONFIG_CLOCK_GETTIME
149 case CS_CGETTIME: {
150 struct timespec ts;
151
152 if (fill_clock_gettime(&ts) < 0) {
153 log_err("fio: clock_gettime fails\n");
154 assert(0);
155 }
156
157 tp->tv_sec = ts.tv_sec;
158 tp->tv_usec = ts.tv_nsec / 1000;
159 break;
160 }
161#endif
162#ifdef ARCH_HAVE_CPU_CLOCK
163 case CS_CPUCLOCK: {
164 uint64_t usecs, t;
165 struct tv_valid *tv;
166
167#ifdef CONFIG_TLS_THREAD
168 tv = &static_tv_valid;
169#else
170 tv = pthread_getspecific(tv_tls_key);
171#endif
172
173 t = get_cpu_clock();
174 if (t < cycles_start && !cycles_wrap)
175 cycles_wrap = 1;
176 else if (cycles_wrap && t >= cycles_start && !tv->warned) {
177 log_err("fio: double CPU clock wrap\n");
178 tv->warned = 1;
179 }
180
181 t -= cycles_start;
182 tv->last_cycles = t;
183 tv->last_tv_valid = 1;
184#ifdef ARCH_CPU_CLOCK_CYCLES_PER_USEC
185 usecs = t / ARCH_CPU_CLOCK_CYCLES_PER_USEC;
186#else
187 if (t < max_cycles_for_mult)
188 usecs = (t * inv_cycles_per_usec) / 16777216UL;
189 else
190 usecs = t / cycles_per_usec;
191#endif
192 tp->tv_sec = usecs / 1000000;
193 tp->tv_usec = usecs % 1000000;
194 break;
195 }
196#endif
197 default:
198 log_err("fio: invalid clock source %d\n", fio_clock_source);
199 break;
200 }
201}
202
203#ifdef FIO_DEBUG_TIME
204void fio_gettime(struct timeval *tp, void *caller)
205#else
206void fio_gettime(struct timeval *tp, void fio_unused *caller)
207#endif
208{
209#ifdef FIO_DEBUG_TIME
210 if (!caller)
211 caller = __builtin_return_address(0);
212
213 gtod_log_caller(caller);
214#endif
215 if (fio_unlikely(fio_gettime_offload(tp)))
216 return;
217
218 __fio_gettime(tp);
219}
220
221#if defined(ARCH_HAVE_CPU_CLOCK) && !defined(ARCH_CPU_CLOCK_CYCLES_PER_USEC)
222static unsigned long get_cycles_per_usec(void)
223{
224 struct timeval s, e;
225 uint64_t c_s, c_e;
226 enum fio_cs old_cs = fio_clock_source;
227
228#ifdef CONFIG_CLOCK_GETTIME
229 fio_clock_source = CS_CGETTIME;
230#else
231 fio_clock_source = CS_GTOD;
232#endif
233 __fio_gettime(&s);
234
235 c_s = get_cpu_clock();
236 do {
237 uint64_t elapsed;
238
239 __fio_gettime(&e);
240
241 elapsed = utime_since(&s, &e);
242 if (elapsed >= 1280) {
243 c_e = get_cpu_clock();
244 break;
245 }
246 } while (1);
247
248 fio_clock_source = old_cs;
249 return (c_e - c_s + 127) >> 7;
250}
251
252#define NR_TIME_ITERS 50
253
254static int calibrate_cpu_clock(void)
255{
256 double delta, mean, S;
257 uint64_t avg, cycles[NR_TIME_ITERS];
258 int i, samples;
259
260 cycles[0] = get_cycles_per_usec();
261 S = delta = mean = 0.0;
262 for (i = 0; i < NR_TIME_ITERS; i++) {
263 cycles[i] = get_cycles_per_usec();
264 delta = cycles[i] - mean;
265 if (delta) {
266 mean += delta / (i + 1.0);
267 S += delta * (cycles[i] - mean);
268 }
269 }
270
271 /*
272 * The most common platform clock breakage is returning zero
273 * indefinitely. Check for that and return failure.
274 */
275 if (!cycles[0] && !cycles[NR_TIME_ITERS - 1])
276 return 1;
277
278 S = sqrt(S / (NR_TIME_ITERS - 1.0));
279
280 samples = avg = 0;
281 for (i = 0; i < NR_TIME_ITERS; i++) {
282 double this = cycles[i];
283
284 if ((fmax(this, mean) - fmin(this, mean)) > S)
285 continue;
286 samples++;
287 avg += this;
288 }
289
290 S /= (double) NR_TIME_ITERS;
291 mean /= 10.0;
292
293 for (i = 0; i < NR_TIME_ITERS; i++)
294 dprint(FD_TIME, "cycles[%d]=%llu\n", i,
295 (unsigned long long) cycles[i] / 10);
296
297 avg /= samples;
298 avg = (avg + 5) / 10;
299 dprint(FD_TIME, "avg: %llu\n", (unsigned long long) avg);
300 dprint(FD_TIME, "mean=%f, S=%f\n", mean, S);
301
302 cycles_per_usec = avg;
303 inv_cycles_per_usec = 16777216UL / cycles_per_usec;
304 max_cycles_for_mult = ~0ULL / inv_cycles_per_usec;
305 dprint(FD_TIME, "inv_cycles_per_usec=%lu\n", inv_cycles_per_usec);
306 cycles_start = get_cpu_clock();
307 dprint(FD_TIME, "cycles_start=%llu\n", cycles_start);
308 return 0;
309}
310#else
311static int calibrate_cpu_clock(void)
312{
313#ifdef ARCH_CPU_CLOCK_CYCLES_PER_USEC
314 return 0;
315#else
316 return 1;
317#endif
318}
319#endif // ARCH_HAVE_CPU_CLOCK
320
321#ifndef CONFIG_TLS_THREAD
322void fio_local_clock_init(int is_thread)
323{
324 struct tv_valid *t;
325
326 t = calloc(1, sizeof(*t));
327 if (pthread_setspecific(tv_tls_key, t)) {
328 log_err("fio: can't set TLS key\n");
329 assert(0);
330 }
331}
332
333static void kill_tv_tls_key(void *data)
334{
335 free(data);
336}
337#else
338void fio_local_clock_init(int is_thread)
339{
340}
341#endif
342
343void fio_clock_init(void)
344{
345 if (fio_clock_source == fio_clock_source_inited)
346 return;
347
348#ifndef CONFIG_TLS_THREAD
349 if (pthread_key_create(&tv_tls_key, kill_tv_tls_key))
350 log_err("fio: can't create TLS key\n");
351#endif
352
353 fio_clock_source_inited = fio_clock_source;
354
355 if (calibrate_cpu_clock())
356 tsc_reliable = 0;
357
358 /*
359 * If the arch sets tsc_reliable != 0, then it must be good enough
360 * to use as THE clock source. For x86 CPUs, this means the TSC
361 * runs at a constant rate and is synced across CPU cores.
362 */
363 if (tsc_reliable) {
364 if (!fio_clock_source_set && !fio_monotonic_clocktest(0))
365 fio_clock_source = CS_CPUCLOCK;
366 } else if (fio_clock_source == CS_CPUCLOCK)
367 log_info("fio: clocksource=cpu may not be reliable\n");
368}
369
370uint64_t utime_since(const struct timeval *s, const struct timeval *e)
371{
372 long sec, usec;
373 uint64_t ret;
374
375 sec = e->tv_sec - s->tv_sec;
376 usec = e->tv_usec - s->tv_usec;
377 if (sec > 0 && usec < 0) {
378 sec--;
379 usec += 1000000;
380 }
381
382 /*
383 * time warp bug on some kernels?
384 */
385 if (sec < 0 || (sec == 0 && usec < 0))
386 return 0;
387
388 ret = sec * 1000000ULL + usec;
389
390 return ret;
391}
392
393uint64_t utime_since_now(const struct timeval *s)
394{
395 struct timeval t;
396
397 fio_gettime(&t, NULL);
398 return utime_since(s, &t);
399}
400
401uint64_t mtime_since(const struct timeval *s, const struct timeval *e)
402{
403 long sec, usec, ret;
404
405 sec = e->tv_sec - s->tv_sec;
406 usec = e->tv_usec - s->tv_usec;
407 if (sec > 0 && usec < 0) {
408 sec--;
409 usec += 1000000;
410 }
411
412 if (sec < 0 || (sec == 0 && usec < 0))
413 return 0;
414
415 sec *= 1000UL;
416 usec /= 1000UL;
417 ret = sec + usec;
418
419 return ret;
420}
421
422uint64_t mtime_since_now(const struct timeval *s)
423{
424 struct timeval t;
425 void *p = __builtin_return_address(0);
426
427 fio_gettime(&t, p);
428 return mtime_since(s, &t);
429}
430
431uint64_t time_since_now(const struct timeval *s)
432{
433 return mtime_since_now(s) / 1000;
434}
435
436#if defined(FIO_HAVE_CPU_AFFINITY) && defined(ARCH_HAVE_CPU_CLOCK) && \
437 defined(CONFIG_SFAA)
438
439#define CLOCK_ENTRIES_DEBUG 100000
440#define CLOCK_ENTRIES_TEST 10000
441
442struct clock_entry {
443 uint32_t seq;
444 uint32_t cpu;
445 uint64_t tsc;
446};
447
448struct clock_thread {
449 pthread_t thread;
450 int cpu;
451 int debug;
452 pthread_mutex_t lock;
453 pthread_mutex_t started;
454 unsigned long nr_entries;
455 uint32_t *seq;
456 struct clock_entry *entries;
457};
458
459static inline uint32_t atomic32_inc_return(uint32_t *seq)
460{
461 return 1 + __sync_fetch_and_add(seq, 1);
462}
463
464static void *clock_thread_fn(void *data)
465{
466 struct clock_thread *t = data;
467 struct clock_entry *c;
468 os_cpu_mask_t cpu_mask;
469 uint32_t last_seq;
470 int i;
471
472 memset(&cpu_mask, 0, sizeof(cpu_mask));
473 fio_cpu_set(&cpu_mask, t->cpu);
474
475 if (fio_setaffinity(gettid(), cpu_mask) == -1) {
476 log_err("clock setaffinity failed\n");
477 return (void *) 1;
478 }
479
480 pthread_mutex_lock(&t->lock);
481 pthread_mutex_unlock(&t->started);
482
483 last_seq = 0;
484 c = &t->entries[0];
485 for (i = 0; i < t->nr_entries; i++, c++) {
486 uint32_t seq;
487 uint64_t tsc;
488
489 c->cpu = t->cpu;
490 do {
491 seq = atomic32_inc_return(t->seq);
492 if (seq < last_seq)
493 break;
494 tsc = get_cpu_clock();
495 } while (seq != *t->seq);
496
497 c->seq = seq;
498 c->tsc = tsc;
499 }
500
501 if (t->debug) {
502 unsigned long long clocks;
503
504 clocks = t->entries[i - 1].tsc - t->entries[0].tsc;
505 log_info("cs: cpu%3d: %llu clocks seen\n", t->cpu, clocks);
506 }
507
508 /*
509 * The most common platform clock breakage is returning zero
510 * indefinitely. Check for that and return failure.
511 */
512 if (!t->entries[i - 1].tsc && !t->entries[0].tsc)
513 return (void *) 1;
514
515 return NULL;
516}
517
518static int clock_cmp(const void *p1, const void *p2)
519{
520 const struct clock_entry *c1 = p1;
521 const struct clock_entry *c2 = p2;
522
523 if (c1->seq == c2->seq)
524 log_err("cs: bug in atomic sequence!\n");
525
526 return c1->seq - c2->seq;
527}
528
529int fio_monotonic_clocktest(int debug)
530{
531 struct clock_thread *cthreads;
532 unsigned int nr_cpus = cpus_online();
533 struct clock_entry *entries;
534 unsigned long nr_entries, tentries, failed = 0;
535 struct clock_entry *prev, *this;
536 uint32_t seq = 0;
537 unsigned int i;
538
539 if (debug) {
540 log_info("cs: reliable_tsc: %s\n", tsc_reliable ? "yes" : "no");
541
542#ifdef FIO_INC_DEBUG
543 fio_debug |= 1U << FD_TIME;
544#endif
545 nr_entries = CLOCK_ENTRIES_DEBUG;
546 } else
547 nr_entries = CLOCK_ENTRIES_TEST;
548
549 calibrate_cpu_clock();
550
551 if (debug) {
552#ifdef FIO_INC_DEBUG
553 fio_debug &= ~(1U << FD_TIME);
554#endif
555 }
556
557 cthreads = malloc(nr_cpus * sizeof(struct clock_thread));
558 tentries = nr_entries * nr_cpus;
559 entries = malloc(tentries * sizeof(struct clock_entry));
560
561 if (debug)
562 log_info("cs: Testing %u CPUs\n", nr_cpus);
563
564 for (i = 0; i < nr_cpus; i++) {
565 struct clock_thread *t = &cthreads[i];
566
567 t->cpu = i;
568 t->debug = debug;
569 t->seq = &seq;
570 t->nr_entries = nr_entries;
571 t->entries = &entries[i * nr_entries];
572 pthread_mutex_init(&t->lock, NULL);
573 pthread_mutex_init(&t->started, NULL);
574 pthread_mutex_lock(&t->lock);
575 if (pthread_create(&t->thread, NULL, clock_thread_fn, t)) {
576 failed++;
577 nr_cpus = i;
578 break;
579 }
580 }
581
582 for (i = 0; i < nr_cpus; i++) {
583 struct clock_thread *t = &cthreads[i];
584
585 pthread_mutex_lock(&t->started);
586 }
587
588 for (i = 0; i < nr_cpus; i++) {
589 struct clock_thread *t = &cthreads[i];
590
591 pthread_mutex_unlock(&t->lock);
592 }
593
594 for (i = 0; i < nr_cpus; i++) {
595 struct clock_thread *t = &cthreads[i];
596 void *ret;
597
598 pthread_join(t->thread, &ret);
599 if (ret)
600 failed++;
601 }
602 free(cthreads);
603
604 if (failed) {
605 if (debug)
606 log_err("Clocksource test: %lu threads failed\n", failed);
607 goto err;
608 }
609
610 qsort(entries, tentries, sizeof(struct clock_entry), clock_cmp);
611
612 for (failed = i = 0; i < tentries; i++) {
613 this = &entries[i];
614
615 if (!i) {
616 prev = this;
617 continue;
618 }
619
620 if (prev->tsc > this->tsc) {
621 uint64_t diff = prev->tsc - this->tsc;
622
623 if (!debug) {
624 failed++;
625 break;
626 }
627
628 log_info("cs: CPU clock mismatch (diff=%llu):\n",
629 (unsigned long long) diff);
630 log_info("\t CPU%3u: TSC=%llu, SEQ=%u\n", prev->cpu, (unsigned long long) prev->tsc, prev->seq);
631 log_info("\t CPU%3u: TSC=%llu, SEQ=%u\n", this->cpu, (unsigned long long) this->tsc, this->seq);
632 failed++;
633 }
634
635 prev = this;
636 }
637
638 if (debug) {
639 if (failed)
640 log_info("cs: Failed: %lu\n", failed);
641 else
642 log_info("cs: Pass!\n");
643 }
644err:
645 free(entries);
646 return !!failed;
647}
648
649#else /* defined(FIO_HAVE_CPU_AFFINITY) && defined(ARCH_HAVE_CPU_CLOCK) */
650
651int fio_monotonic_clocktest(int debug)
652{
653 if (debug)
654 log_info("cs: current platform does not support CPU clocks\n");
655 return 1;
656}
657
658#endif