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;
31 if (gup->size > ULONG_MAX)
34 nr_pages = gup->size / PAGE_SIZE;
35 pages = kvcalloc(nr_pages, sizeof(void *), GFP_KERNEL);
40 nr = gup->nr_pages_per_call;
41 start_time = ktime_get();
42 for (addr = gup->addr; addr < gup->addr + gup->size; addr = next) {
43 if (nr != gup->nr_pages_per_call)
46 next = addr + nr * PAGE_SIZE;
47 if (next > gup->addr + gup->size) {
48 next = gup->addr + gup->size;
49 nr = (next - addr) / PAGE_SIZE;
53 case GUP_FAST_BENCHMARK:
54 nr = get_user_pages_fast(addr, nr, gup->flags & 1,
57 case GUP_LONGTERM_BENCHMARK:
58 nr = get_user_pages(addr, nr,
59 (gup->flags & 1) | FOLL_LONGTERM,
63 nr = get_user_pages(addr, nr, gup->flags & 1, pages + i,
76 end_time = ktime_get();
78 gup->get_delta_usec = ktime_us_delta(end_time, start_time);
79 gup->size = addr - gup->addr;
81 start_time = ktime_get();
82 for (i = 0; i < nr_pages; i++) {
87 end_time = ktime_get();
88 gup->put_delta_usec = ktime_us_delta(end_time, start_time);
95 static long gup_benchmark_ioctl(struct file *filep, unsigned int cmd,
98 struct gup_benchmark gup;
102 case GUP_FAST_BENCHMARK:
103 case GUP_LONGTERM_BENCHMARK:
110 if (copy_from_user(&gup, (void __user *)arg, sizeof(gup)))
113 ret = __gup_benchmark_ioctl(cmd, &gup);
117 if (copy_to_user((void __user *)arg, &gup, sizeof(gup)))
123 static const struct file_operations gup_benchmark_fops = {
124 .open = nonseekable_open,
125 .unlocked_ioctl = gup_benchmark_ioctl,
128 static int gup_benchmark_init(void)
130 debugfs_create_file_unsafe("gup_benchmark", 0600, NULL, NULL,
131 &gup_benchmark_fops);
136 late_initcall(gup_benchmark_init);