From 3f0dfe7956d7fbce89194b9c4b7cb6e1af6c3d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Fri, 7 Oct 2016 15:03:47 +0200 Subject: [PATCH] dde_ipxe: increase Slab backend alloc to 2 MiB Fixes #2121. --- repos/dde_ipxe/src/lib/dde_ipxe/dde_support.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/repos/dde_ipxe/src/lib/dde_ipxe/dde_support.cc b/repos/dde_ipxe/src/lib/dde_ipxe/dde_support.cc index be639fb86e..3daef05e95 100644 --- a/repos/dde_ipxe/src/lib/dde_ipxe/dde_support.cc +++ b/repos/dde_ipxe/src/lib/dde_ipxe/dde_support.cc @@ -437,8 +437,8 @@ struct Slab_backend_alloc : public Genode::Allocator, public Genode::Region_map_client { enum { - VM_SIZE = 1024 * 1024, - BLOCK_SIZE = 64 * 1024, + VM_SIZE = 2 * 1024 * 1024, + BLOCK_SIZE = 64 * 1024, ELEMENTS = VM_SIZE / BLOCK_SIZE, }; @@ -546,13 +546,12 @@ struct Slab NUM_SLABS = (SLAB_STOP_LOG2 - SLAB_START_LOG2) + 1, }; - Slab_backend_alloc &_back_alloc; Slab_alloc *_allocator[NUM_SLABS]; Genode::addr_t _start; Genode::addr_t _end; Slab(Slab_backend_alloc &alloc) - : _back_alloc(alloc), _start(alloc.start()), _end(alloc.end()) + : _start(alloc.start()), _end(alloc.end()) { for (unsigned i = 0; i < NUM_SLABS; i++) _allocator[i] = new (Genode::env()->heap())