aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/kernel.c
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-11-20 10:33:35 +0000
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-11-20 10:33:35 +0000
commit8f97ebc65a82ca41933884ac894a342090d3e532 (patch)
treeb385c9929052adab3ed3dde44a2990546d175f9f /extras/mini-os/kernel.c
parente92b61a44e5b260dc0029f59cdfd676e74e22b86 (diff)
downloadxen-8f97ebc65a82ca41933884ac894a342090d3e532.tar.gz
xen-8f97ebc65a82ca41933884ac894a342090d3e532.tar.bz2
xen-8f97ebc65a82ca41933884ac894a342090d3e532.zip
[MINIOS] Delay enabling event delivery at start of day.
Signed-off-by: Grzegorz Milos <gm281@cam.ac.uk>
Diffstat (limited to 'extras/mini-os/kernel.c')
-rw-r--r--extras/mini-os/kernel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/mini-os/kernel.c b/extras/mini-os/kernel.c
index 9b3c471fe7..152499ceb4 100644
--- a/extras/mini-os/kernel.c
+++ b/extras/mini-os/kernel.c
@@ -101,9 +101,6 @@ void start_kernel(start_info_t *si)
trap_init();
- /* ENABLE EVENT DELIVERY. This is disabled at start of day. */
- __sti();
-
/* print out some useful information */
printk("Xen Minimal OS!\n");
printk("start_info: %p\n", si);
@@ -119,6 +116,9 @@ void start_kernel(start_info_t *si)
/* Set up events. */
init_events();
+ /* ENABLE EVENT DELIVERY. This is disabled at start of day. */
+ __sti();
+
arch_print_info();
setup_xen_features();