mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
mm: do not overwrite reserved pages counter at show_mem()
Minor fixlet to perform the reserved pages counter aggregation for each node, at show_mem() Signed-off-by: Rafael Aquini <aquini@redhat.com> Acked-by: Rik van Riel <riel@redhat.com> Acked-by: Johannes Weiner <jweiner@redhat.com> Acked-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3a18ca0613
commit
bc127bda37
@ -28,7 +28,7 @@ void show_mem(unsigned int filter)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
total += zone->present_pages;
|
total += zone->present_pages;
|
||||||
reserved = zone->present_pages - zone->managed_pages;
|
reserved += zone->present_pages - zone->managed_pages;
|
||||||
|
|
||||||
if (is_highmem_idx(zoneid))
|
if (is_highmem_idx(zoneid))
|
||||||
highmem += zone->present_pages;
|
highmem += zone->present_pages;
|
||||||
|
Loading…
Reference in New Issue
Block a user