X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=time.c;h=f1833c7b9ea42d368c06eda180528d68db8e3c2c;hp=b145dc5b639a3d2bea37b6cae4c528cfdc17cf97;hb=674c8f2fb233c813f29c96f77c30b628f20bd75f;hpb=8b22c7850e0cedcc5e6310d9f9a82fce0bb8e73b diff --git a/time.c b/time.c index b145dc5b..f1833c7b 100644 --- a/time.c +++ b/time.c @@ -9,25 +9,29 @@ static unsigned long ns_granularity; /* * busy looping version for the last few usec */ -void usec_spin(unsigned int usec) +uint64_t usec_spin(unsigned int usec) { struct timeval start; + uint64_t t; fio_gettime(&start, NULL); - while (utime_since_now(&start) < usec) + while ((t = utime_since_now(&start)) < usec) nop; + + return t; } -void usec_sleep(struct thread_data *td, unsigned long usec) +uint64_t usec_sleep(struct thread_data *td, unsigned long usec) { struct timespec req; struct timeval tv; + uint64_t t = 0; do { unsigned long ts = usec; if (usec < ns_granularity) { - usec_spin(usec); + t += usec_spin(usec); break; } @@ -46,11 +50,14 @@ void usec_sleep(struct thread_data *td, unsigned long usec) break; ts = utime_since_now(&tv); + t += ts; if (ts >= usec) break; usec -= ts; } while (!td->terminate); + + return t; } uint64_t time_since_genesis(void)