Fix signed int/long truncation on 32-bit architectures
[fio.git] / time.c
... / ...
CommitLineData
1#include <time.h>
2#include <sys/time.h>
3
4#include "fio.h"
5
6static struct timeval genesis;
7static unsigned long ns_granularity;
8
9unsigned long long utime_since(struct timeval *s, struct timeval *e)
10{
11 long sec, usec;
12 unsigned long long ret;
13
14 sec = e->tv_sec - s->tv_sec;
15 usec = e->tv_usec - s->tv_usec;
16 if (sec > 0 && usec < 0) {
17 sec--;
18 usec += 1000000;
19 }
20
21 /*
22 * time warp bug on some kernels?
23 */
24 if (sec < 0 || (sec == 0 && usec < 0))
25 return 0;
26
27 ret = sec * 1000000ULL + usec;
28
29 return ret;
30}
31
32unsigned long long utime_since_now(struct timeval *s)
33{
34 struct timeval t;
35
36 fio_gettime(&t, NULL);
37 return utime_since(s, &t);
38}
39
40unsigned long mtime_since(struct timeval *s, struct timeval *e)
41{
42 long sec, usec, ret;
43
44 sec = e->tv_sec - s->tv_sec;
45 usec = e->tv_usec - s->tv_usec;
46 if (sec > 0 && usec < 0) {
47 sec--;
48 usec += 1000000;
49 }
50
51 sec *= 1000UL;
52 usec /= 1000UL;
53 ret = sec + usec;
54
55 /*
56 * time warp bug on some kernels?
57 */
58 if (ret < 0)
59 ret = 0;
60
61 return ret;
62}
63
64unsigned long mtime_since_now(struct timeval *s)
65{
66 struct timeval t;
67 void *p = __builtin_return_address(0);
68
69 fio_gettime(&t, p);
70 return mtime_since(s, &t);
71}
72
73unsigned long time_since_now(struct timeval *s)
74{
75 return mtime_since_now(s) / 1000;
76}
77
78/*
79 * busy looping version for the last few usec
80 */
81void usec_spin(unsigned int usec)
82{
83 struct timeval start;
84
85 fio_gettime(&start, NULL);
86 while (utime_since_now(&start) < usec)
87 nop;
88}
89
90void usec_sleep(struct thread_data *td, unsigned long usec)
91{
92 struct timespec req;
93 struct timeval tv;
94
95 do {
96 unsigned long ts = usec;
97
98 if (usec < ns_granularity) {
99 usec_spin(usec);
100 break;
101 }
102
103 ts = usec - ns_granularity;
104
105 if (ts >= 1000000) {
106 req.tv_sec = ts / 1000000;
107 ts -= 1000000 * req.tv_sec;
108 } else
109 req.tv_sec = 0;
110
111 req.tv_nsec = ts * 1000;
112 fio_gettime(&tv, NULL);
113
114 if (nanosleep(&req, NULL) < 0)
115 break;
116
117 ts = utime_since_now(&tv);
118 if (ts >= usec)
119 break;
120
121 usec -= ts;
122 } while (!td->terminate);
123}
124
125unsigned long mtime_since_genesis(void)
126{
127 return mtime_since_now(&genesis);
128}
129
130int in_ramp_time(struct thread_data *td)
131{
132 return td->o.ramp_time && !td->ramp_time_over;
133}
134
135int ramp_time_over(struct thread_data *td)
136{
137 struct timeval tv;
138
139 if (!td->o.ramp_time || td->ramp_time_over)
140 return 1;
141
142 fio_gettime(&tv, NULL);
143 if (mtime_since(&td->epoch, &tv) >= td->o.ramp_time * 1000) {
144 td->ramp_time_over = 1;
145 reset_all_stats(td);
146 td_set_runstate(td, TD_RAMP);
147 return 1;
148 }
149
150 return 0;
151}
152
153void fio_time_init(void)
154{
155 int i;
156
157 fio_clock_init();
158
159 /*
160 * Check the granularity of the nanosleep function
161 */
162 for (i = 0; i < 10; i++) {
163 struct timeval tv;
164 struct timespec ts;
165 unsigned long elapsed;
166
167 fio_gettime(&tv, NULL);
168 ts.tv_sec = 0;
169 ts.tv_nsec = 1000;
170
171 nanosleep(&ts, NULL);
172 elapsed = utime_since_now(&tv);
173
174 if (elapsed > ns_granularity)
175 ns_granularity = elapsed;
176 }
177}
178
179void set_genesis_time(void)
180{
181 fio_gettime(&genesis, NULL);
182}
183
184void fill_start_time(struct timeval *t)
185{
186 memcpy(t, &genesis, sizeof(genesis));
187}