X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=gettime.c;h=533ec97b50b6e9c1baf84e82a012090a06214be2;hp=161240eeedbbcee0107bfc92a5c1fa7e94954915;hb=7f059a76061ea676419d91fe4c5270d817f283a1;hpb=1e97cce9f5a87a67293a05ec4533ed6968698b2e diff --git a/gettime.c b/gettime.c index 161240ee..533ec97b 100644 --- a/gettime.c +++ b/gettime.c @@ -113,26 +113,18 @@ void fio_gettime(struct timeval *tp, void fio_unused *caller) gtod_log_caller(caller); #endif -repeat: - if (!clock_gettime_works) + if (!clock_gettime_works) { +gtod: gettimeofday(tp, NULL); - else { + } else { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts) < 0) { clock_gettime_works = 0; - goto repeat; + goto gtod; } tp->tv_sec = ts.tv_sec; tp->tv_usec = ts.tv_nsec / 1000; } } - -static void fio_init check_clock(void) -{ - struct timespec ts; - - if (clock_getres(CLOCK_MONOTONIC, &ts) < 0) - clock_gettime_works = 0; -}