sanity_check: add message for missing pages
This commit is contained in:
parent
48b10af30e
commit
c84ca502c9
|
@ -404,5 +404,7 @@ KERNEL_sanity_check_memory_lists(void)
|
||||||
for (size_t i = 0; i < PHYSICAL_PAGE_AMOUNT; i++) {
|
for (size_t i = 0; i < PHYSICAL_PAGE_AMOUNT; i++) {
|
||||||
if (ppns_free[i] >= 1 && ppns_busy[i] >= 1)
|
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]);
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue