X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=kitten%2Finit%2Fmain.c;fp=kitten%2Finit%2Fmain.c;h=9b8c086ef6fb88588344c6341f7f468ea8a37505;hb=9dc62167c8f74a37391028c558f46db50a7998d1;hp=070f67c4f75f9ae8148fd9d18fc81cc83d1c0c8e;hpb=0c1919011d9ce503de86b4f9f334cbddda1be182;p=palacios-OLD.git diff --git a/kitten/init/main.c b/kitten/init/main.c index 070f67c..9b8c086 100644 --- a/kitten/init/main.c +++ b/kitten/init/main.c @@ -118,6 +118,8 @@ start_kernel() #ifdef CONFIG_V3VEE v3vee_run_vmm(); + printk( "%s: VMM returned. We're spinning\n", __func__ ); + while(1) { asm( "hlt" ); } #else /* * Start up user-space... @@ -128,6 +130,6 @@ start_kernel() panic("Failed to create init_task (status=%d).", status); schedule(); /* This should not return */ -#endif BUG(); +#endif }