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.


debugging fixes
Jack Lange [Tue, 17 Mar 2009 20:42:02 +0000 (15:42 -0500)]
palacios/src/palacios/svm_handler.c

index 85b70f0..af6c49f 100644 (file)
@@ -75,8 +75,8 @@ int v3_handle_svm_exit(struct guest_info * info) {
        // Interrupt was taken in the guest
 #ifdef DEBUG_INTERRUPTS
        if ((info->intr_state.irq_vector == 238) || 
-           (info->intr_state.irq_vector == 238)) {
-           PrintDebug("Interrupt taken by guest\n");
+           (info->intr_state.irq_vector == 239)) {
+           PrintDebug("Interrupt %d taken by guest\n", info->intr_state.irq_vector);
        }
 #endif
        v3_injecting_intr(info, info->intr_state.irq_vector, EXTERNAL_IRQ);
@@ -370,7 +370,7 @@ int v3_handle_svm_exit(struct guest_info * info) {
                guest_ctrl->guest_ctrl.V_INTR_PRIO = 0xf;
 #ifdef DEBUG_INTERRUPTS
                if ((guest_ctrl->guest_ctrl.V_INTR_VECTOR == 238) || 
-                   (guest_ctrl->guest_ctrl.V_INTR_VECTOR == 238)) {
+                   (guest_ctrl->guest_ctrl.V_INTR_VECTOR == 239)) {
                    PrintDebug("Injecting Interrupt %d (EIP=%p)\n", 
                               guest_ctrl->guest_ctrl.V_INTR_VECTOR, 
                               (void *)(addr_t)info->rip);