summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-04-13 23:07:37 +0200
committerRichard Braun <rbraun@sceen.net>2018-04-13 23:07:37 +0200
commit8088131a4e0165938593577a9cfa87de7ffd22bc (patch)
tree87defbbf49eb607e1047b99fe9bf9cdfd783e47f
parent2ed1292205bcc8d702214a4606dfade008e43cdb (diff)
kern/xcall: upgrade spurious interrupts to errors
-rw-r--r--kern/xcall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/xcall.c b/kern/xcall.c
index 2096f61..74a5bcb 100644
--- a/kern/xcall.c
+++ b/kern/xcall.c
@@ -177,7 +177,7 @@ xcall_intr(void)
if (call) {
xcall_process(call);
} else {
- log_warning("xcall: spurious interrupt on cpu%u", cpu_id());
+ log_err("xcall: spurious interrupt on cpu%u", cpu_id());
}
syscnt_inc(&cpu_data->sc_received);