* [merged mm-stable] lib-show_memc-use-for_each_populated_zone-simplify-code.patch removed from -mm tree
@ 2023-04-21 21:52 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2023-04-21 21:52 UTC (permalink / raw)
To: mm-commits, vbabka, mhocko, hannes, yajun.deng, akpm
The quilt patch titled
Subject: lib/show_mem.c: use for_each_populated_zone() simplify code
has been removed from the -mm tree. Its filename was
lib-show_memc-use-for_each_populated_zone-simplify-code.patch
This patch was dropped because it was merged into the mm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: Yajun Deng <yajun.deng@linux.dev>
Subject: lib/show_mem.c: use for_each_populated_zone() simplify code
Date: Mon, 17 Apr 2023 11:52:26 +0800
__show_mem() needs to iterate over all zones that have memory, we can
simplify the code by using for_each_populated_zone().
Link: https://lkml.kernel.org/r/20230417035226.4013584-1-yajun.deng@linux.dev
Signed-off-by: Yajun Deng <yajun.deng@linux.dev>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
lib/show_mem.c | 21 +++++++--------------
1 file changed, 7 insertions(+), 14 deletions(-)
--- a/lib/show_mem.c~lib-show_memc-use-for_each_populated_zone-simplify-code
+++ a/lib/show_mem.c
@@ -10,26 +10,19 @@
void __show_mem(unsigned int filter, nodemask_t *nodemask, int max_zone_idx)
{
- pg_data_t *pgdat;
unsigned long total = 0, reserved = 0, highmem = 0;
+ struct zone *zone;
printk("Mem-Info:\n");
__show_free_areas(filter, nodemask, max_zone_idx);
- for_each_online_pgdat(pgdat) {
- int zoneid;
+ for_each_populated_zone(zone) {
- for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
- struct zone *zone = &pgdat->node_zones[zoneid];
- if (!populated_zone(zone))
- continue;
-
- total += zone->present_pages;
- reserved += zone->present_pages - zone_managed_pages(zone);
-
- if (is_highmem_idx(zoneid))
- highmem += zone->present_pages;
- }
+ total += zone->present_pages;
+ reserved += zone->present_pages - zone_managed_pages(zone);
+
+ if (is_highmem(zone))
+ highmem += zone->present_pages;
}
printk("%lu pages RAM\n", total);
_
Patches currently in -mm which might be from yajun.deng@linux.dev are
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-04-21 21:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-21 21:52 [merged mm-stable] lib-show_memc-use-for_each_populated_zone-simplify-code.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.