From ed1b8fb3f9ae04251fab5e1109e2b7d6b26ec4e3 Mon Sep 17 00:00:00 2001 From: Stefan Kalkowski Date: Mon, 7 Feb 2022 15:59:21 +0100 Subject: [PATCH] sculpt_manager: increase ram quota of nic driver When running Sculpt OS on i.MX8 MW EVK or MNT Reform 2 the NIC driver is far more hangry with respect to memory usage. Fix genodelabs/genode#4407 --- repos/gems/src/app/sculpt_manager/runtime/nic_drv.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/gems/src/app/sculpt_manager/runtime/nic_drv.cc b/repos/gems/src/app/sculpt_manager/runtime/nic_drv.cc index 5a8bbd3251..330381e6aa 100644 --- a/repos/gems/src/app/sculpt_manager/runtime/nic_drv.cc +++ b/repos/gems/src/app/sculpt_manager/runtime/nic_drv.cc @@ -17,7 +17,7 @@ void Sculpt::gen_nic_drv_start_content(Xml_generator &xml) { gen_common_start_content(xml, "nic_drv", - Cap_quota{300}, Ram_quota{16*1024*1024}, + Cap_quota{300}, Ram_quota{20*1024*1024}, Priority::NETWORK); gen_named_node(xml, "resource", "CPU", [&] () { xml.attribute("quantum", "50"); });