X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=backend.c;h=52791040ff21384d283b2a09de3ff9718e19d866;hp=eaa6ea77752e9d82feaf968c1aed5c6fdc20778c;hb=9e684a4976b7934f5ce011ea281dfef3352e5738;hpb=5daa4ebed724cb0223dac4a1386e068f59722dab diff --git a/backend.c b/backend.c index eaa6ea77..52791040 100644 --- a/backend.c +++ b/backend.c @@ -409,6 +409,9 @@ static void do_verify(struct thread_data *td) } } + if (flow_threshold_exceeded(td)) + continue; + io_u = __get_io_u(td); if (!io_u) break; @@ -560,6 +563,9 @@ static void do_io(struct thread_data *td) } } + if (flow_threshold_exceeded(td)) + continue; + io_u = get_io_u(td); if (!io_u) break;