The patch titled Subject: mm/gup_benchmark.c: time put_page() has been added to the -mm tree. Its filename is mm-gup_benchmark-time-put_page.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-gup_benchmark-time-put_page.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-gup_benchmark-time-put_page.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Keith Busch <keith.busch@xxxxxxxxx> Subject: 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. Link: http://lkml.kernel.org/r/20181010195605.10689-1-keith.busch@xxxxxxxxx Signed-off-by: Keith Busch <keith.busch@xxxxxxxxx> Acked-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Dave Hansen <dave.hansen@xxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- diff -puN mm/gup_benchmark.c~mm-gup_benchmark-time-put_page mm/gup_benchmark.c --- a/mm/gup_benchmark.c~mm-gup_benchmark-time-put_page +++ a/mm/gup_benchmark.c @@ -8,7 +8,8 @@ #define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark) struct gup_benchmark { - __u64 delta_usec; + __u64 get_delta_usec; + __u64 put_delta_usec; __u64 addr; __u64 size; __u32 nr_pages_per_call; @@ -48,14 +49,17 @@ static int __gup_benchmark_ioctl(unsigne } 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; + start_time = ktime_get(); for (i = 0; i < nr_pages; i++) { if (!pages[i]) break; put_page(pages[i]); } + end_time = ktime_get(); + gup->put_delta_usec = ktime_us_delta(end_time, start_time); kvfree(pages); return 0; diff -puN tools/testing/selftests/vm/gup_benchmark.c~mm-gup_benchmark-time-put_page tools/testing/selftests/vm/gup_benchmark.c --- a/tools/testing/selftests/vm/gup_benchmark.c~mm-gup_benchmark-time-put_page +++ a/tools/testing/selftests/vm/gup_benchmark.c @@ -17,7 +17,8 @@ #define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark) struct gup_benchmark { - __u64 delta_usec; + __u64 get_delta_usec; + __u64 put_delta_usec; __u64 addr; __u64 size; __u32 nr_pages_per_call; @@ -81,7 +82,8 @@ int main(int argc, char **argv) if (ioctl(fd, GUP_FAST_BENCHMARK, &gup)) 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) printf(", truncated (size: %lld)", gup.size); printf("\n"); _ Patches currently in -mm which might be from keith.busch@xxxxxxxxx are mm-gup_benchmark-time-put_page.patch mm-gup_benchmark-add-additional-pinning-methods.patch tools-gup_benchmark-fix-write-flag-usage.patch tools-gup_benchmark-allow-user-specified-file.patch tools-gup_benchmark-add-map_shared-option.patch tools-gup_benchmark-add-map_hugetlb-option.patch