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.


SVM wbinvd handler change to assure correct assembly
Peter Dinda [Thu, 16 Jun 2011 17:53:09 +0000 (12:53 -0500)]
palacios/src/palacios/svm_wbinvd.c

index c8c11e6..eb8a35f 100644 (file)
@@ -35,7 +35,7 @@ int v3_handle_svm_wbinvd(struct guest_info * info) {
        v3_raise_exception(info, GPF_EXCEPTION);
     } else {
        info->rip += 2;
-       asm("wbinvd");
+       asm volatile ("wbinvd" ::: "memory");
     }
 
     return 0;