The patch titled Subject: tools-gup_benchmark-allow-user-specified-file-fix has been removed from the -mm tree. Its filename was tools-gup_benchmark-allow-user-specified-file-fix.patch This patch was dropped because it was folded into tools-gup_benchmark-allow-user-specified-file.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: tools-gup_benchmark-allow-user-specified-file-fix avoid using comma operator Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: Dave Hansen <dave.hansen@xxxxxxxxx> Cc: Keith Busch <keith.busch@xxxxxxxxx> Cc: Kirill Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- --- a/tools/testing/selftests/vm/gup_benchmark.c~tools-gup_benchmark-allow-user-specified-file-fix +++ a/tools/testing/selftests/vm/gup_benchmark.c @@ -71,8 +71,10 @@ int main(int argc, char **argv) } filed = open(file, O_RDWR|O_CREAT); - if (filed < 0) - perror("open"), exit(filed); + if (filed < 0) { + perror("open"); + exit(filed); + } gup.nr_pages_per_call = nr_pages; gup.flags = write; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are tools-gup_benchmark-allow-user-specified-file.patch mm-thp-fix-madv_dontneed-vs-migrate_misplaced_transhuge_page-race-condition-fix.patch