mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
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:
parent
fe874bc455
commit
078ee798f7
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ KBuffer KBufferBuilder::build()
|
|||
}
|
||||
|
||||
KBufferBuilder::KBufferBuilder()
|
||||
: m_buffer(KBuffer::create_with_size(1048576))
|
||||
: m_buffer(KBuffer::create_with_size(1048576 * 4))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue