Lines Matching refs:iters
55 * multiple threads, pipe 'microbench=<iters>' from multiple tasks into the
58 static noinline void microbenchmark(unsigned long iters)
72 pr_info("%s begin | iters: %lu\n", __func__, iters);
75 while (iters--) {
76 unsigned long addr = iters & ((PAGE_SIZE << 8) - 1);
77 int type = !(iters & 0x7f) ? KCSAN_ACCESS_ATOMIC :
78 (!(iters & 0xf) ? KCSAN_ACCESS_WRITE : 0);
235 unsigned long iters;
237 if (kstrtoul(&arg[strlen("microbench=")], 0, &iters))
239 microbenchmark(iters);