From: Andrew Morton <akpm@linux-foundation.org>
To: kaiyang2@cs.cmu.edu
Cc: linux-mm@kvack.org, hannes@cmpxchg.org
Subject: Re: [PATCH] mm: print the promo watermark in zoneinfo
Date: Thu, 1 Aug 2024 11:54:13 -0700 [thread overview]
Message-ID: <20240801115413.996ebfdc3598e761abc67e44@linux-foundation.org> (raw)
In-Reply-To: <20240801182203.27848-1-kaiyang2@cs.cmu.edu>
On Thu, 1 Aug 2024 18:22:03 +0000 kaiyang2@cs.cmu.edu wrote:
> From: Kaiyang Zhao <kaiyang2@cs.cmu.edu>
>
> Printing the promo watermark in zoneinfo just like other watermarks.
> This helps users check and verify all the watermarks are appropriate.
>
> ...
>
> --- a/mm/vmstat.c
> +++ b/mm/vmstat.c
> @@ -1725,6 +1725,7 @@ static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
> "\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 seq_file *m, pg_data_t *pgdat,
> min_wmark_pages(zone),
> low_wmark_pages(zone),
> high_wmark_pages(zone),
> + wmark_pages(zone, WMARK_PROMO),
> zone->spanned_pages,
> zone->present_pages,
> zone_managed_pages(zone),
Maybe. I'll let others opine about the desirability of this.
But you made me look at include/linux/mmzone.h
#define min_wmark_pages(z) (z->_watermark[WMARK_MIN] + z->watermark_boost)
#define low_wmark_pages(z) (z->_watermark[WMARK_LOW] + z->watermark_boost)
#define high_wmark_pages(z) (z->_watermark[WMARK_HIGH] + z->watermark_boost)
#define wmark_pages(z, i) (z->_watermark[i] + z->watermark_boost)
a) how dumb is it that we open-code wmark_pages() three times and
then define it!
b) For symmetry at least, I guess your patch should add and use
promo_wmark_pages().
c) all the above could (and hence should) be static inline C functions.
prev parent reply other threads:[~2024-08-01 18:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-01 18:22 kaiyang2
2024-08-01 18:54 ` Andrew Morton [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240801115413.996ebfdc3598e761abc67e44@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=hannes@cmpxchg.org \
--cc=kaiyang2@cs.cmu.edu \
--cc=linux-mm@kvack.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox