Kernel: Bump KBufferBuilder VM allocation to 4 MB

This is pretty large but since it's not eagerly committed to physical
pages, it's probably okay. I'm bumping this after running out of space
for a ProtocolServer profile run :^)
This commit is contained in:
Andreas Kling 2019-12-12 21:58:32 +01:00
parent fe874bc455
commit 078ee798f7
Notes: sideshowbarker 2024-07-19 10:52:48 +09:00

View file

@ -17,7 +17,7 @@ KBuffer KBufferBuilder::build()
}
KBufferBuilder::KBufferBuilder()
: m_buffer(KBuffer::create_with_size(1048576))
: m_buffer(KBuffer::create_with_size(1048576 * 4))
{
}