On 27/12/2025 13:09, Samuel Thibault wrote:
Hello,
Thanks for the work! I have applied the first three patches. Please make
sure to include a better single-line description than just "pageout
improvements" :)
Sorry about that! I'm in catch up mode having been out of software
development for a very long time and I still need to clear up how to
drive git change logs and particularly git format-patch and friends.
Mike Kelly via Bug reports for the GNU Hurd, le sam. 20 déc. 2025 18:29:18
+0000, a ecrit:
- vm_page_segs[i].nr_active_pages / PAGES_PER_MB);
+ nr_active_pages / PAGES_PER_MB);
db_printf("%-20s %10uM\n", "high active:",
vm_page_segs[i].high_active_pages / PAGES_PER_MB);
db_printf("%-20s %10uM\n", "inactive:",
- vm_page_segs[i].nr_inactive_pages / PAGES_PER_MB);
+ nr_inactive_pages / PAGES_PER_MB);
}
You can as well print the four values, it'll be useful to inspect how
the VM is going.
Added to the TODO list for a future revision.
Mike.