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_LONGTERM_BENCHMARK _IOWR('g', 2, struct gup_benchmark)
10 #define GUP_BENCHMARK _IOWR('g', 3, struct gup_benchmark)
12 struct gup_benchmark {
17 __u32 nr_pages_per_call;
19 __u64 expansion[10]; /* For future use */
22 static int __gup_benchmark_ioctl(unsigned int cmd,
23 struct gup_benchmark *gup)
25 ktime_t start_time, end_time;
26 unsigned long i, nr_pages, addr, next;
30 if (gup->size > ULONG_MAX)
33 nr_pages = gup->size / PAGE_SIZE;
34 pages = kvcalloc(nr_pages, sizeof(void *), GFP_KERNEL);
39 nr = gup->nr_pages_per_call;
40 start_time = ktime_get();
41 for (addr = gup->addr; addr < gup->addr + gup->size; addr = next) {
42 if (nr != gup->nr_pages_per_call)
45 next = addr + nr * PAGE_SIZE;
46 if (next > gup->addr + gup->size) {
47 next = gup->addr + gup->size;
48 nr = (next - addr) / PAGE_SIZE;
52 case GUP_FAST_BENCHMARK:
53 nr = get_user_pages_fast(addr, nr, gup->flags & 1,
56 case GUP_LONGTERM_BENCHMARK:
57 nr = get_user_pages(addr, nr,
58 (gup->flags & 1) | FOLL_LONGTERM,
62 nr = get_user_pages(addr, nr, gup->flags & 1, pages + i,
73 end_time = ktime_get();
75 gup->get_delta_usec = ktime_us_delta(end_time, start_time);
76 gup->size = addr - gup->addr;
78 start_time = ktime_get();
79 for (i = 0; i < nr_pages; i++) {
84 end_time = ktime_get();
85 gup->put_delta_usec = ktime_us_delta(end_time, start_time);
91 static long gup_benchmark_ioctl(struct file *filep, unsigned int cmd,
94 struct gup_benchmark gup;
98 case GUP_FAST_BENCHMARK:
99 case GUP_LONGTERM_BENCHMARK:
106 if (copy_from_user(&gup, (void __user *)arg, sizeof(gup)))
109 ret = __gup_benchmark_ioctl(cmd, &gup);
113 if (copy_to_user((void __user *)arg, &gup, sizeof(gup)))
119 static const struct file_operations gup_benchmark_fops = {
120 .open = nonseekable_open,
121 .unlocked_ioctl = gup_benchmark_ioctl,
124 static int gup_benchmark_init(void)
126 debugfs_create_file_unsafe("gup_benchmark", 0600, NULL, NULL,
127 &gup_benchmark_fops);
132 late_initcall(gup_benchmark_init);