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 NMI handler for SVM
Peter Dinda [Thu, 19 May 2011 23:08:24 +0000 (18:08 -0500)]
palacios/src/palacios/svm_handler.c

index 5749eac..a84d2e1 100644 (file)
@@ -217,7 +217,10 @@ int v3_handle_svm_exit(struct guest_info * info, addr_t exit_code, addr_t exit_i
                return -1;
            }
 
-           break;          
+           break;      
+       case VMEXIT_NMI:
+           // handled by interrupt dispatcher
+           break;
        case VMEXIT_INTR:
            // handled by interrupt dispatch earlier
            break;