Lines Matching +full:100 +full:w
180 * Use 100% writes during the population phase to ensure all in run_test()
186 memstress_set_write_percent(vm, 100); in run_test()
297 "[-x memslots] [-w percentage] [-c physical cpus to run test on]\n", name); in help()
325 printf(" -w: specify the percentage of pages which should be written to\n" in help()
326 " as an integer from 0-100 inclusive. This is probabilistic,\n" in help()
327 " so -w X means each page has an X%% chance of writing\n" in help()
328 " and a (100-X)%% chance of reading.\n" in help()
329 " (default: 100 i.e. all pages are written to.)\n"); in help()
344 .write_percent = 100, in main()
358 while ((opt = getopt(argc, argv, "ab:c:eghi:m:nop:r:s:v:x:w:")) != -1) { in main()
405 case 'w': in main()
407 TEST_ASSERT(p.write_percent <= 100, in main()
408 "Write percentage must be between 0 and 100"); in main()