mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 00:55:08 +00:00
Kernel: Put "Couldn't find user region" spam behind MM_DEBUG
This basically never tells us anything actionable anyway, and it's a real annoyance when doing something validation-heavy like profiling.
This commit is contained in:
parent
ba7281a7b2
commit
f020081a38
1 changed files with 2 additions and 0 deletions
|
@ -263,7 +263,9 @@ Region* MemoryManager::user_region_from_vaddr(Process& process, VirtualAddress v
|
|||
if (region.contains(vaddr))
|
||||
return ®ion;
|
||||
}
|
||||
#ifdef MM_DEBUG
|
||||
dbg() << process << " Couldn't find user region for " << vaddr;
|
||||
#endif
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue