From 7cbf5cd075345db7915de03dba3915c2051133bd Mon Sep 17 00:00:00 2001 From: Sebastian Sumpf Date: Wed, 5 Oct 2022 18:11:59 +0200 Subject: [PATCH] sculpt_manager: Increase RAM quota for file systems With the increased allocation size to 4MB in rump (20df224b19d1d1336d4f896822a5c4fcffd4c923), the supplied quota by the sculpt_manager does not suffice any more. issue #4631 --- repos/gems/src/app/sculpt_manager/runtime/file_system.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/gems/src/app/sculpt_manager/runtime/file_system.cc b/repos/gems/src/app/sculpt_manager/runtime/file_system.cc index 57a6c5856b..4ed933b089 100644 --- a/repos/gems/src/app/sculpt_manager/runtime/file_system.cc +++ b/repos/gems/src/app/sculpt_manager/runtime/file_system.cc @@ -18,7 +18,7 @@ void Sculpt::gen_fs_start_content(Xml_generator &xml, File_system::Type fs_type) { gen_common_start_content(xml, target.fs(), - Cap_quota{400}, Ram_quota{64*1024*1024}, + Cap_quota{400}, Ram_quota{72*1024*1024}, Priority::STORAGE); gen_named_node(xml, "binary", "vfs");