hw: adjust SIGNAL SLAB sizes to new conditions

fix #950
This commit is contained in:
Martin Stein 2013-11-15 09:39:32 +01:00 committed by Norman Feske
parent 347ff635b3
commit 653e14b74f
1 changed files with 6 additions and 6 deletions

View File

@ -32,20 +32,20 @@ namespace Genode
enum {
/**
* Lastly a receivers SLAB size was 112. Additionally we have
* Lastly Receiver::slab_size() was 112. Additionally we
* have to take in account, that the backing store might add
* its metadata and round up to next page size. So we choose
* 36 * 112 which mostly is save to end up in one page only.
* 35 * 112 which mostly is save to end up in one page only.
*/
RECEIVERS_SB_SIZE = 4032,
RECEIVERS_SB_SIZE = 3920,
/**
* Lastly a contexts SLAB size was 112. Additionally we have
* Lastly Context::slab_size() size was 124. Additionally we
* have to take in account, that the backing store might add
* its metadata and round up to next page size. So we choose
* 36 * 112 which mostly is save to end up in one page only.
* 32 * 124 which mostly is save to end up in one page only.
*/
CONTEXTS_SB_SIZE = 4032,
CONTEXTS_SB_SIZE = 3968,
};
private: