1 #include <linux/kernel.h>
3 #include <linux/slab.h>
4 #include <linux/uaccess.h>
5 #include <linux/ktime.h>
6 #include <linux/debugfs.h>
8 #define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark)
9 #define GUP_BENCHMARK _IOWR('g', 2, struct gup_benchmark)
10 #define PIN_FAST_BENCHMARK _IOWR('g', 3, struct gup_benchmark)
11 #define PIN_BENCHMARK _IOWR('g', 4, struct gup_benchmark)
12 #define PIN_LONGTERM_BENCHMARK _IOWR('g', 5, struct gup_benchmark)
14 struct gup_benchmark {
19 __u32 nr_pages_per_call;
21 __u64 expansion[10]; /* For future use */
24 static void put_back_pages(unsigned int cmd, struct page **pages,
25 unsigned long nr_pages)
30 case GUP_FAST_BENCHMARK:
32 for (i = 0; i < nr_pages; i++)
36 case PIN_FAST_BENCHMARK:
38 case PIN_LONGTERM_BENCHMARK:
39 unpin_user_pages(pages, nr_pages);
44 static void verify_dma_pinned(unsigned int cmd, struct page **pages,
45 unsigned long nr_pages)
51 case PIN_FAST_BENCHMARK:
53 case PIN_LONGTERM_BENCHMARK:
54 for (i = 0; i < nr_pages; i++) {
56 if (WARN(!page_maybe_dma_pinned(page),
57 "pages[%lu] is NOT dma-pinned\n", i)) {
59 dump_page(page, "gup_benchmark failure");
67 static int __gup_benchmark_ioctl(unsigned int cmd,
68 struct gup_benchmark *gup)
70 ktime_t start_time, end_time;
71 unsigned long i, nr_pages, addr, next;
75 bool needs_mmap_lock =
76 cmd != GUP_FAST_BENCHMARK && cmd != PIN_FAST_BENCHMARK;
78 if (gup->size > ULONG_MAX)
81 nr_pages = gup->size / PAGE_SIZE;
82 pages = kvcalloc(nr_pages, sizeof(void *), GFP_KERNEL);
86 if (needs_mmap_lock && mmap_read_lock_killable(current->mm)) {
92 nr = gup->nr_pages_per_call;
93 start_time = ktime_get();
94 for (addr = gup->addr; addr < gup->addr + gup->size; addr = next) {
95 if (nr != gup->nr_pages_per_call)
98 next = addr + nr * PAGE_SIZE;
99 if (next > gup->addr + gup->size) {
100 next = gup->addr + gup->size;
101 nr = (next - addr) / PAGE_SIZE;
104 /* Filter out most gup flags: only allow a tiny subset here: */
105 gup->flags &= FOLL_WRITE;
108 case GUP_FAST_BENCHMARK:
109 nr = get_user_pages_fast(addr, nr, gup->flags,
113 nr = get_user_pages(addr, nr, gup->flags, pages + i,
116 case PIN_FAST_BENCHMARK:
117 nr = pin_user_pages_fast(addr, nr, gup->flags,
121 nr = pin_user_pages(addr, nr, gup->flags, pages + i,
124 case PIN_LONGTERM_BENCHMARK:
125 nr = pin_user_pages(addr, nr,
126 gup->flags | FOLL_LONGTERM,
138 end_time = ktime_get();
140 /* Shifting the meaning of nr_pages: now it is actual number pinned: */
143 gup->get_delta_usec = ktime_us_delta(end_time, start_time);
144 gup->size = addr - gup->addr;
147 * Take an un-benchmark-timed moment to verify DMA pinned
148 * state: print a warning if any non-dma-pinned pages are found:
150 verify_dma_pinned(cmd, pages, nr_pages);
152 start_time = ktime_get();
154 put_back_pages(cmd, pages, nr_pages);
156 end_time = ktime_get();
157 gup->put_delta_usec = ktime_us_delta(end_time, start_time);
161 mmap_read_unlock(current->mm);
167 static long gup_benchmark_ioctl(struct file *filep, unsigned int cmd,
170 struct gup_benchmark gup;
174 case GUP_FAST_BENCHMARK:
176 case PIN_FAST_BENCHMARK:
178 case PIN_LONGTERM_BENCHMARK:
184 if (copy_from_user(&gup, (void __user *)arg, sizeof(gup)))
187 ret = __gup_benchmark_ioctl(cmd, &gup);
191 if (copy_to_user((void __user *)arg, &gup, sizeof(gup)))
197 static const struct file_operations gup_benchmark_fops = {
198 .open = nonseekable_open,
199 .unlocked_ioctl = gup_benchmark_ioctl,
202 static int gup_benchmark_init(void)
204 debugfs_create_file_unsafe("gup_benchmark", 0600, NULL, NULL,
205 &gup_benchmark_fops);
210 late_initcall(gup_benchmark_init);