* [merged mm-hotfixes-stable] tools-mm-fix-compile-error.patch removed from -mm tree
@ 2024-11-15 6:44 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2024-11-15 6:44 UTC (permalink / raw)
To: mm-commits, wladislav.kw, vishal.moola, sj, oleksandr, motiejus,
akpm
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1526 bytes --]
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@jakstys.lt>
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@jakstys.lt
Fixes: ece5897e5a10 ("tools/mm: -Werror fixes in page-types/slabinfo")
Signed-off-by: Motiejus JakÅ`tys <motiejus@jakstys.lt>
Closes: https://github.com/NixOS/nixpkgs/issues/355369
Reviewed-by: SeongJae Park <sj@kernel.org>
Reviewed-by: Vishal Moola (Oracle) <vishal.moola@gmail.com>
Acked-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Cc: Wladislav Wiebe <wladislav.kw@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
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@jakstys.lt are
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-11-15 6:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-15 6:44 [merged mm-hotfixes-stable] tools-mm-fix-compile-error.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.