The quilt patch titled Subject: tools/mm: fix compile error has been removed from the -mm tree. Its filename was tools-mm-fix-compile-error.patch This patch was dropped because it was merged into the mm-hotfixes-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Motiejus JakÅ`tys <motiejus@xxxxxxxxxx> Subject: tools/mm: fix compile error Date: Tue, 12 Nov 2024 19:16:55 +0200 Add a missing semicolon. Link: https://lkml.kernel.org/r/20241112171655.1662670-1-motiejus@xxxxxxxxxx Fixes: ece5897e5a10 ("tools/mm: -Werror fixes in page-types/slabinfo") Signed-off-by: Motiejus JakÅ`tys <motiejus@xxxxxxxxxx> Closes: https://github.com/NixOS/nixpkgs/issues/355369 Reviewed-by: SeongJae Park <sj@xxxxxxxxxx> Reviewed-by: Vishal Moola (Oracle) <vishal.moola@xxxxxxxxx> Acked-by: Oleksandr Natalenko <oleksandr@xxxxxxxxxxxxxx> Cc: Wladislav Wiebe <wladislav.kw@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/mm/page-types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/mm/page-types.c~tools-mm-fix-compile-error +++ a/tools/mm/page-types.c @@ -420,7 +420,7 @@ static void show_page(unsigned long voff if (opt_file) printf("%lx\t", voffset); if (opt_list_cgroup) - printf("@%" PRIu64 "\t", cgroup) + printf("@%" PRIu64 "\t", cgroup); if (opt_list_mapcnt) printf("%" PRIu64 "\t", mapcnt); _ Patches currently in -mm which might be from motiejus@xxxxxxxxxx are