From 3f690a1e3209e0e82a202d7f1ad422a88b3b16c0 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 27 Mar 2023 17:08:04 +0200 Subject: [PATCH] base: Increased RAM quota for TOPO session to accomodate for larger CPU counts. --- repos/base/include/topo_session/connection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base/include/topo_session/connection.h b/repos/base/include/topo_session/connection.h index f20601f391..f2ff65b994 100644 --- a/repos/base/include/topo_session/connection.h +++ b/repos/base/include/topo_session/connection.h @@ -27,7 +27,7 @@ struct Genode::Topo_connection : Connection, Topo_session_client { enum { - RAM_QUOTA = 262144 + RAM_QUOTA = 2097152UL }; Topo_connection(Env &env, const char *label = "", Affinity const &affinity = Affinity())