From d132159421c40446bb73d93130a45b5f2eac8306 Mon Sep 17 00:00:00 2001 From: Raptor Engineering Development Team Date: Sat, 24 Apr 2021 04:50:33 -0500 Subject: [PATCH] Set Kestrel service thread to highest priority PREEMPT level This maintains repsonsiveness of console / IPMI during the IPL process. --- kestrel/src/kestrel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kestrel/src/kestrel.h b/kestrel/src/kestrel.h index 4532bb9..01c1846 100644 --- a/kestrel/src/kestrel.h +++ b/kestrel/src/kestrel.h @@ -8,7 +8,7 @@ #endif #if (WITH_ZEPHYR) -#define KESTREL_SERVICE_THREAD_PRIORITY K_PRIO_PREEMPT(CONFIG_NUM_PREEMPT_PRIORITIES - 1) +#define KESTREL_SERVICE_THREAD_PRIORITY K_PRIO_PREEMPT(0) #endif #if (WITH_ZEPHYR) -- 2.30.2