Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


fixed exception initialization bug
Jack Lange [Thu, 23 Apr 2009 22:30:26 +0000 (17:30 -0500)]
palacios/src/palacios/vmm_config.c

index 4fbd7a9..fb4c5e3 100644 (file)
@@ -84,9 +84,11 @@ int v3_config_guest(struct guest_info * info, struct v3_vm_config * config_ptr)
     v3_init_io_map(info);
     v3_init_msr_map(info);
     v3_init_interrupt_state(info);
+    v3_init_exception_state(info);
     v3_init_dev_mgr(info);
     v3_init_host_events(info);
-    
+
+
     v3_init_decoder(info);
     
     v3_init_hypercall_map(info);