configure: don't override march if already set
[fio.git] / backend.c
index e248117f20624846dbfac614abe7204ca3259807..b4a09acae5ab0e2ccc2515a5b1251342f1dc34d9 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -899,12 +899,14 @@ static void handle_thinktime(struct thread_data *td, enum fio_ddir ddir)
         */
        if (total && td->rate_bps[ddir] && td->o.rate_ign_think) {
                uint64_t missed = (td->rate_bps[ddir] * total) / 1000000ULL;
+               uint64_t bs = td->o.min_bs[ddir];
+               uint64_t usperop = bs * 1000000ULL / td->rate_bps[ddir];
                uint64_t over;
 
-               if (total >= 1000000)
-                       over = td->o.min_bs[ddir];
+               if (usperop <= total)
+                       over = bs;
                else
-                       over = (td->o.min_bs[ddir] * total) / 1000000ULL;
+                       over = (usperop - total) / usperop * -bs;
 
                td->rate_io_issue_bytes[ddir] += (missed - over);
        }