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.


register assignment fix
Jack Lange [Fri, 18 Sep 2009 22:42:48 +0000 (17:42 -0500)]
palacios/include/palacios/vmm_lowlevel.h

index 8e85162..f3c8db5 100644 (file)
@@ -30,7 +30,7 @@ static void __inline__ v3_cpuid(uint32_t target,
                                uint32_t * ecx, uint32_t * edx) {
     __asm__ __volatile__ (
                          "cpuid\n\t"
-                         : "=a" (*eax), "=S" (*ebx), "=c" (*ecx), "=d" (*edx)
+                         : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
                          : "0" (target), "2" (*ecx)
                          );
     return;