mm/gup_benchmark.c: time put_page()

We'd like to measure time to unpin user pages, so this adds a second
benchmark timer on put_page, separate from get_page.

Adding the field breaks this ioctl ABI, but should be okay since this an
in-tree kernel selftest.

[akpm@linux-foundation.org: add expansion to struct gup_benchmark for future use]
Link: http://lkml.kernel.org/r/20181010195605.10689-1-keith.busch@intel.com
Signed-off-by: Keith Busch <keith.busch@intel.com>
Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Dave Hansen <dave.hansen@intel.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Keith Busch
2018-10-26 15:09:52 -07:00
committed by Linus Torvalds
parent 7a1adfddaf
commit 26db3d09d9
2 changed files with 11 additions and 4 deletions

View File

@@ -8,11 +8,13 @@
#define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark) #define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark)
struct gup_benchmark { struct gup_benchmark {
__u64 delta_usec; __u64 get_delta_usec;
__u64 put_delta_usec;
__u64 addr; __u64 addr;
__u64 size; __u64 size;
__u32 nr_pages_per_call; __u32 nr_pages_per_call;
__u32 flags; __u32 flags;
__u64 expansion[10]; /* For future use */
}; };
static int __gup_benchmark_ioctl(unsigned int cmd, static int __gup_benchmark_ioctl(unsigned int cmd,
@@ -48,14 +50,17 @@ static int __gup_benchmark_ioctl(unsigned int cmd,
} }
end_time = ktime_get(); end_time = ktime_get();
gup->delta_usec = ktime_us_delta(end_time, start_time); gup->get_delta_usec = ktime_us_delta(end_time, start_time);
gup->size = addr - gup->addr; gup->size = addr - gup->addr;
start_time = ktime_get();
for (i = 0; i < nr_pages; i++) { for (i = 0; i < nr_pages; i++) {
if (!pages[i]) if (!pages[i])
break; break;
put_page(pages[i]); put_page(pages[i]);
} }
end_time = ktime_get();
gup->put_delta_usec = ktime_us_delta(end_time, start_time);
kvfree(pages); kvfree(pages);
return 0; return 0;

View File

@@ -17,7 +17,8 @@
#define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark) #define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark)
struct gup_benchmark { struct gup_benchmark {
__u64 delta_usec; __u64 get_delta_usec;
__u64 put_delta_usec;
__u64 addr; __u64 addr;
__u64 size; __u64 size;
__u32 nr_pages_per_call; __u32 nr_pages_per_call;
@@ -81,7 +82,8 @@ int main(int argc, char **argv)
if (ioctl(fd, GUP_FAST_BENCHMARK, &gup)) if (ioctl(fd, GUP_FAST_BENCHMARK, &gup))
perror("ioctl"), exit(1); perror("ioctl"), exit(1);
printf("Time: %lld us", gup.delta_usec); printf("Time: get:%lld put:%lld us", gup.get_delta_usec,
gup.put_delta_usec);
if (gup.size != size) if (gup.size != size)
printf(", truncated (size: %lld)", gup.size); printf(", truncated (size: %lld)", gup.size);
printf("\n"); printf("\n");