sanity_check: add message for missing pages

This commit is contained in:
ІО-23 Шмуляр Олег 2025-03-21 14:53:22 +02:00
parent 48b10af30e
commit c84ca502c9
1 changed files with 2 additions and 0 deletions

View File

@ -404,5 +404,7 @@ KERNEL_sanity_check_memory_lists(void)
for (size_t i = 0; i < PHYSICAL_PAGE_AMOUNT; i++) {
if (ppns_free[i] >= 1 && ppns_busy[i] >= 1)
printf("[kernel:sanity_check_memory_lists] Page #%d is listed in both lists (%d times in total)\n", i, ppns_busy[i] + ppns_free[i]);
else if (ppns_free[i] == 0 && ppns_busy[i] == 0)
printf("[kernel:sanity_check_memory_lists] Page #%d is missing from both lists\n", i);
}
}