Everywhere: Replace a bundle of dbg with dbgln.

These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.Everything:
This commit is contained in:
asynts 2021-01-10 15:17:54 +01:00 committed by Andreas Kling
commit dca6f1f49b
Notes: sideshowbarker 2024-07-18 23:56:44 +09:00
9 changed files with 53 additions and 38 deletions

View file

@ -242,7 +242,7 @@ void* kmalloc_impl(size_t size)
++g_kmalloc_call_count;
if (g_dump_kmalloc_stacks && Kernel::g_kernel_symbols_available) {
dbg() << "kmalloc(" << size << ")";
dbgln("kmalloc({})", size);
Kernel::dump_backtrace();
}