mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-08 03:45:24 +00:00
Fiasco.OC: raise sigma0's priority to maximum.
When sigma0 runs on a lower priority than the rest of the threads in the system it might come to the point that while answering a page fault or I/O memory area request the timeslice of the caller (core-pager) gets fully consumed. As long as other threads are still executable and don't block sigma0 won't do progress anymore, because it runs at the lowest priority. This commit simply sets sigma0's priority to the highest in the system.
This commit is contained in:
parent
21ffbc0080
commit
c02f04da76
23
base-foc/patches/sigma0_prio.patch
Normal file
23
base-foc/patches/sigma0_prio.patch
Normal file
@ -0,0 +1,23 @@
|
||||
Index: l4/pkg/sigma0/server/src/init.cc
|
||||
===================================================================
|
||||
--- l4/pkg/sigma0/server/src/init.cc (revision 38)
|
||||
+++ l4/pkg/sigma0/server/src/init.cc (working copy)
|
||||
@@ -27,6 +27,7 @@
|
||||
#include "ioports.h"
|
||||
#include "mem_man_test.h"
|
||||
#include <l4/sys/debugger.h>
|
||||
+#include <l4/sys/scheduler.h>
|
||||
|
||||
/* started as the L4 sigma0 task from crt0.S */
|
||||
|
||||
@@ -61,6 +62,10 @@
|
||||
l4_debugger_set_object_name(L4_BASE_FACTORY_CAP, "root factory");
|
||||
l4_debugger_set_object_name(L4_BASE_THREAD_CAP, "sigma0");
|
||||
|
||||
+ l4_sched_param_t params = l4_sched_param(255);
|
||||
+ l4_scheduler_run_thread(L4_BASE_SCHEDULER_CAP, L4_BASE_THREAD_CAP, ¶ms);
|
||||
+
|
||||
+
|
||||
Page_alloc_base::init();
|
||||
|
||||
init_memory(info);
|
Loading…
x
Reference in New Issue
Block a user