The patch titled Subject: mm: print the promo watermark in zoneinfo has been added to the -mm mm-unstable branch. Its filename is mm-print-the-promo-watermark-in-zoneinfo.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-print-the-promo-watermark-in-zoneinfo.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Kaiyang Zhao <kaiyang2@xxxxxxxxxx> Subject: mm: print the promo watermark in zoneinfo Date: Thu, 1 Aug 2024 23:25:48 +0000 Print the promo watermark in zoneinfo just like other watermarks. This helps users check and verify all the watermarks are appropriate. Link: https://lkml.kernel.org/r/20240801232548.36604-3-kaiyang2@xxxxxxxxxx Signed-off-by: Kaiyang Zhao <kaiyang2@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmstat.c | 2 ++ 1 file changed, 2 insertions(+) --- a/mm/vmstat.c~mm-print-the-promo-watermark-in-zoneinfo +++ a/mm/vmstat.c @@ -1725,6 +1725,7 @@ static void zoneinfo_show_print(struct s "\n min %lu" "\n low %lu" "\n high %lu" + "\n promo %lu" "\n spanned %lu" "\n present %lu" "\n managed %lu" @@ -1734,6 +1735,7 @@ static void zoneinfo_show_print(struct s min_wmark_pages(zone), low_wmark_pages(zone), high_wmark_pages(zone), + promo_wmark_pages(zone), zone->spanned_pages, zone->present_pages, zone_managed_pages(zone), _ Patches currently in -mm which might be from kaiyang2@xxxxxxxxxx are mm-consider-cma-pages-in-watermark-check-for-numa-balancing-target-node.patch mm-create-promo_wmark_pages-and-clean-up-open-coded-sites.patch mm-print-the-promo-watermark-in-zoneinfo.patch