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.


Linux user updates for more recent distros (Ubuntu 14.04 as target)
[palacios.git] / linux_usr / v3_mem_move.c
index 145217c..3938190 100644 (file)
@@ -35,7 +35,7 @@ int main(int argc, char* argv[]) {
     cmd.gpa = strtoll(argv[2],0,16);
     cmd.pcore_id = atoi(argv[3]);
 
-    printf("Migrating memory region of %p to memory with affinity for physical CPU %d\n", cmd.gpa, cmd.pcore_id);
+    printf("Migrating memory region of %p to memory with affinity for physical CPU %d\n", (void*)cmd.gpa, cmd.pcore_id);
 
     vm_fd = open(vm_dev, O_RDONLY);