mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
Kernel: Put debug spam about already-paged-in inode pages behind #ifdef
This commit is contained in:
parent
6cd9c020ea
commit
179158bc97
1 changed files with 2 additions and 0 deletions
|
@ -352,7 +352,9 @@ bool MemoryManager::page_in_from_inode(Region& region, unsigned page_index_in_re
|
|||
cli();
|
||||
|
||||
if (!vmo_page.is_null()) {
|
||||
#ifdef PAGE_FAULT_DEBUG
|
||||
dbgprintf("MM: page_in_from_inode() but page already present. Fine with me!\n");
|
||||
#endif
|
||||
remap_region_page(region, page_index_in_region);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue