diff --git a/src/kernel.c b/src/kernel.c index ea87667..fe8b023 100644 --- a/src/kernel.c +++ b/src/kernel.c @@ -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); } }