X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/270869139db617e29a35bb9ded41087bb702f9ac..50b4ecfb1b28e9b1dfc57b6a876fcdf938092152:/lunaix-os/kernel/mm/cake_export.c diff --git a/lunaix-os/kernel/mm/cake_export.c b/lunaix-os/kernel/mm/cake_export.c index 377a9ad..e2ecb3a 100644 --- a/lunaix-os/kernel/mm/cake_export.c +++ b/lunaix-os/kernel/mm/cake_export.c @@ -18,7 +18,7 @@ void __cake_stat_reset(struct twimap* map) { map->index = container_of(&piles, struct cake_pile, piles); - twimap_printf(map, "name, n_cakes, pg/cake, slices/cake, n_slices\n"); + twimap_printf(map, "name cakes pages size slices actives\n"); } void @@ -26,10 +26,11 @@ __cake_rd_stat(struct twimap* map) { struct cake_pile* pos = twimap_index(map, struct cake_pile*); twimap_printf(map, - "%s %d %d %d %d\n", + "%s %d %d %d %d %d\n", pos->pile_name, pos->cakes_count, pos->pg_per_cake, + pos->piece_size, pos->pieces_per_cake, pos->alloced_pieces); }