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.


added code in vmm_intr.c to detect posted swint
Kyle Hale [Wed, 22 Jun 2011 22:06:49 +0000 (17:06 -0500)]
palacios/src/palacios/vmm_intr.c

index 8c4e1c2..a30659f 100644 (file)
@@ -327,6 +327,11 @@ v3_intr_type_t v3_intr_pending(struct guest_info * info) {
            }
        }
     }
+    
+    /* for swintr injection */
+    if (intr_state->swintr_posted == 1) {
+        ret = V3_SOFTWARE_INTR;
+    }
 
     v3_unlock_irqrestore(intr_state->irq_lock, irq_state);