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 missing string delimiter.
Philip Soltero [Wed, 19 Aug 2009 01:58:38 +0000 (20:58 -0500)]
Even though this code isn't compiled, it was causing my build to fail with
this error:

CC palacios/src/palacios/svm.o
palacios/src/palacios/svm.c:574:54: error: missing terminating " character

palacios/src/palacios/svm.c

index 8c2e2d7..4a2d3b9 100644 (file)
@@ -571,7 +571,7 @@ void v3_init_SVM(struct v3_ctrl_ops * vmm_ops) {
                          "movq  %%rcx, %%rax ; "
                          vmload
                          "rdtsc ; "
-                         : "=D"(start_hi), "=S"(start_lo), "=a"(end_lo),d"(end_hi)
+                         : "=D"(start_hi), "=S"(start_lo), "=a"(end_lo),"=d"(end_hi)
                              : "c"(host_vmcb), "0"(0), "1"(0), "2"(0), "3"(0)
                              );