Lines Matching defs:runtime
482 static unsigned long long dmatest_persec(s64 runtime, unsigned int val)
486 if (runtime <= 0)
489 /* drop precision until runtime is 32-bits */
490 while (runtime > UINT_MAX) {
491 runtime >>= 1;
497 do_div(per_sec, runtime);
502 static unsigned long long dmatest_KBs(s64 runtime, unsigned long long len)
504 return FIXPT_TO_INT(dmatest_persec(runtime, len >> 10));
591 s64 runtime = 0;
903 runtime = ktime_to_us(ktime);
916 iops = dmatest_persec(runtime, total_tests);
920 dmatest_KBs(runtime, total_len), ret);