Home | History | Annotate | Download | only in fio

Lines Matching defs:rate

138  * Check if we are above the minimum rate given.
146 unsigned long rate;
169 * if rate blocks is set, sample is running
176 if (td->o.rate[ddir]) {
178 * check bandwidth specified rate
181 log_err("%s: min rate %u not met\n", td->o.name,
186 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
188 rate = 0;
190 if (rate < ratemin ||
192 log_err("%s: min rate %u not met, got"
194 ratemin, rate);
200 * checks iops specified rate
203 log_err("%s: min iops rate %u not met\n",
208 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
210 rate = 0;
212 if (rate < rate_iops_min ||
214 log_err("%s: min iops rate %u not met,"
216 rate_iops_min, rate);
669 * and reaps them, checking for rate and errors along the way.
1689 (*t_rate) -= ddir_rw_sum(td->o.rate);
1932 t_rate += ddir_rw_sum(td->o.rate);