X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=gettime.c;h=85ba7cba8954aa3a70ae5e1faf9a76ab6ab22c72;hp=964a52fa237afe50a05cd7d9081c3e29c26c70fc;hb=b58e3cee98842a9333de90202dc217e421e6c8f2;hpb=be6bb2b72608d7efbec13d06c67446e229136afa diff --git a/gettime.c b/gettime.c index 964a52fa..85ba7cba 100644 --- a/gettime.c +++ b/gettime.c @@ -381,8 +381,7 @@ void fio_clock_init(void) uint64_t utime_since(const struct timeval *s, const struct timeval *e) { - long sec, usec; - uint64_t ret; + int64_t sec, usec; sec = e->tv_sec - s->tv_sec; usec = e->tv_usec - s->tv_usec; @@ -397,9 +396,7 @@ uint64_t utime_since(const struct timeval *s, const struct timeval *e) if (sec < 0 || (sec == 0 && usec < 0)) return 0; - ret = sec * 1000000ULL + usec; - - return ret; + return usec + (sec * 1000000); } uint64_t utime_since_now(const struct timeval *s) @@ -412,7 +409,7 @@ uint64_t utime_since_now(const struct timeval *s) uint64_t mtime_since(const struct timeval *s, const struct timeval *e) { - long sec, usec, ret; + long sec, usec; sec = e->tv_sec - s->tv_sec; usec = e->tv_usec - s->tv_usec; @@ -426,9 +423,7 @@ uint64_t mtime_since(const struct timeval *s, const struct timeval *e) sec *= 1000; usec /= 1000; - ret = sec + usec; - - return ret; + return sec + usec; } uint64_t mtime_since_now(const struct timeval *s)