staticchar *cmd_to_str(unsignedlong cmd)
{ switch (cmd) { case GUP_FAST_BENCHMARK: return"GUP_FAST_BENCHMARK"; case PIN_FAST_BENCHMARK: return"PIN_FAST_BENCHMARK"; case PIN_LONGTERM_BENCHMARK: return"PIN_LONGTERM_BENCHMARK"; case GUP_BASIC_TEST: return"GUP_BASIC_TEST"; case PIN_BASIC_TEST: return"PIN_BASIC_TEST"; case DUMP_USER_PAGES_TEST: return"DUMP_USER_PAGES_TEST";
} return"Unknown command";
}
void *gup_thread(void *data)
{ struct gup_test gup = *(struct gup_test *)data; int i, status;
/* Only report timing information on the *_BENCHMARK commands: */ if ((cmd == PIN_FAST_BENCHMARK) || (cmd == GUP_FAST_BENCHMARK) ||
(cmd == PIN_LONGTERM_BENCHMARK)) { for (i = 0; i < repeats; i++) {
gup.size = size;
status = ioctl(gup_fd, cmd, &gup); if (status) break;
while ((opt = getopt(argc, argv, "m:r:n:F:f:abcj:tTLUuwWSHpz")) != -1) { switch (opt) { case'a':
cmd = PIN_FAST_BENCHMARK; break; case'b':
cmd = PIN_BASIC_TEST; break; case'L':
cmd = PIN_LONGTERM_BENCHMARK; break; case'c':
cmd = DUMP_USER_PAGES_TEST; /* * Dump page 0 (index 1). May be overridden later, by * user's non-option arguments. * * .which_pages is zero-based, so that zero can mean "do * nothing".
*/
gup.which_pages[0] = 1; break; case'p': /* works only with DUMP_USER_PAGES_TEST */
gup.test_flags |= GUP_TEST_FLAG_DUMP_PAGES_USE_PIN; break; case'F': /* strtol, so you can pass flags in hex form */
gup.gup_flags = strtol(optarg, 0, 0); break; case'j':
nthreads = atoi(optarg); break; case'm':
size = atoi(optarg) * MB; break; case'r':
repeats = atoi(optarg); break; case'n':
nr_pages = atoi(optarg); break; case't':
thp = 1; break; case'T':
thp = 0; break; case'U':
cmd = GUP_BASIC_TEST; break; case'u':
cmd = GUP_FAST_BENCHMARK; break; case'w':
write = 1; break; case'W':
write = 0; break; case'f':
file = optarg; break; case'S':
flags &= ~MAP_PRIVATE;
flags |= MAP_SHARED; break; case'H':
flags |= (MAP_HUGETLB | MAP_ANONYMOUS); break; case'z': /* fault pages in gup, do not fault in userland */
touch = 1; break; default:
ksft_exit_fail_msg("Wrong argument\n");
}
}
if (optind < argc) { int extra_arg_count = 0; /* * For example: * * ./gup_test -c 0 1 0x1001 * * ...to dump pages 0, 1, and 4097
*/
while ((optind < argc) &&
(extra_arg_count < GUP_TEST_MAX_PAGES_TO_DUMP)) { /* * Do the 1-based indexing here, so that the user can * use normal 0-based indexing on the command line.
*/ long page_index = strtol(argv[optind], 0, 0) + 1;
filed = open(file, O_RDWR|O_CREAT, 0664); if (filed < 0)
ksft_exit_fail_msg("Unable to open %s: %s\n", file, strerror(errno));
gup.nr_pages_per_call = nr_pages; if (write)
gup.gup_flags |= FOLL_WRITE;
gup_fd = open(GUP_TEST_FILE, O_RDWR); if (gup_fd == -1) { switch (errno) { case EACCES: if (getuid())
ksft_print_msg("Please run this test as root\n"); break; case ENOENT: if (opendir("/sys/kernel/debug") == NULL)
ksft_print_msg("mount debugfs at /sys/kernel/debug\n");
ksft_print_msg("check if CONFIG_GUP_TEST is enabled in kernel config\n"); break; default:
ksft_print_msg("failed to open %s: %s\n", GUP_TEST_FILE, strerror(errno)); break;
}
ksft_test_result_skip("Please run this test as root\n");
ksft_exit_pass();
}
p = mmap(NULL, size, PROT_READ | PROT_WRITE, flags, filed, 0); if (p == MAP_FAILED)
ksft_exit_fail_msg("mmap: %s\n", strerror(errno));
gup.addr = (unsignedlong)p;
/* * FOLL_TOUCH, in gup_test, is used as an either/or case: either * fault pages in from the kernel via FOLL_TOUCH, or fault them * in here, from user space. This allows comparison of performance * between those two cases.
*/ if (touch) {
gup.gup_flags |= FOLL_TOUCH;
} else { for (; (unsignedlong)p < gup.addr + size; p += psize())
p[0] = 0;
}
tid = malloc(sizeof(pthread_t) * nthreads);
assert(tid); for (i = 0; i < nthreads; i++) {
ret = pthread_create(&tid[i], NULL, gup_thread, &gup);
assert(ret == 0);
} for (i = 0; i < nthreads; i++) {
ret = pthread_join(tid[i], NULL);
assert(ret == 0);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.