10 #include <sys/types.h>
12 #include <linux/types.h>
14 #define MB (1UL << 20)
15 #define PAGE_SIZE sysconf(_SC_PAGESIZE)
17 #define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark)
18 #define GUP_LONGTERM_BENCHMARK _IOWR('g', 2, struct gup_benchmark)
19 #define GUP_BENCHMARK _IOWR('g', 3, struct gup_benchmark)
21 struct gup_benchmark {
26 __u32 nr_pages_per_call;
30 int main(int argc, char **argv)
32 struct gup_benchmark gup;
33 unsigned long size = 128 * MB;
34 int i, fd, opt, nr_pages = 1, thp = -1, repeats = 1, write = 0;
35 int cmd = GUP_FAST_BENCHMARK;
38 while ((opt = getopt(argc, argv, "m:r:n:tTLU")) != -1) {
41 size = atoi(optarg) * MB;
44 repeats = atoi(optarg);
47 nr_pages = atoi(optarg);
56 cmd = GUP_LONGTERM_BENCHMARK;
68 gup.nr_pages_per_call = nr_pages;
71 fd = open("/sys/kernel/debug/gup_benchmark", O_RDWR);
73 perror("open"), exit(1);
75 p = mmap(NULL, size, PROT_READ | PROT_WRITE,
76 MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
78 perror("mmap"), exit(1);
79 gup.addr = (unsigned long)p;
82 madvise(p, size, MADV_HUGEPAGE);
84 madvise(p, size, MADV_NOHUGEPAGE);
86 for (; (unsigned long)p < gup.addr + size; p += PAGE_SIZE)
89 for (i = 0; i < repeats; i++) {
91 if (ioctl(fd, cmd, &gup))
92 perror("ioctl"), exit(1);
94 printf("Time: get:%lld put:%lld us", gup.get_delta_usec,
97 printf(", truncated (size: %lld)", gup.size);