(2014/11/15 3:34), Rafael Aquini wrote: > Minor fixlet to perform the reserved pages counter aggregation > for each node, at show_mem() > > Signed-off-by: Rafael Aquini <aquini@xxxxxxxxxx> > --- Acked-by: Yasuaki Ishimatsu <isimatu.yasuaki@xxxxxxxxxxxxxx> Thanks, Yasuaki Ishimatsu > lib/show_mem.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/show_mem.c b/lib/show_mem.c > index 0922579..5e25627 100644 > --- a/lib/show_mem.c > +++ b/lib/show_mem.c > @@ -28,7 +28,7 @@ void show_mem(unsigned int filter) > continue; > > total += zone->present_pages; > - reserved = zone->present_pages - zone->managed_pages; > + reserved += zone->present_pages - zone->managed_pages; > > if (is_highmem_idx(zoneid)) > highmem += zone->present_pages; > -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>