Rename rate_poisson to rate_process
[fio.git] / backend.c
index 85a981dc4d3fdf05183661fd9b012522a60c2aed..aa94acf2499808e4543922f26ea83d21ebff06d4 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -782,10 +782,16 @@ static long long usec_for_io(struct thread_data *td, enum fio_ddir ddir)
        bytes = td->rate_io_issue_bytes[ddir];
        bps = td->rate_bps[ddir];
 
-       if (td->o.poisson_rate) {
+       if (td->o.rate_process == RATE_PROCESS_POISSON) {
+               uint64_t val;
                iops = bps / td->o.bs[ddir];
-               td->last_usec += (int64_t) (1000000 / iops) *
-                                       -logf(__rand_0_1(&td->poisson_state));
+               val = (int64_t) (1000000 / iops) *
+                               -logf(__rand_0_1(&td->poisson_state));
+               if (val) {
+                       dprint(FD_RATE, "poisson rate iops=%llu\n",
+                                       (unsigned long long) 1000000 / val);
+               }
+               td->last_usec += val;
                return td->last_usec;
        } else if (bps) {
                secs = bytes / bps;