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.


updates to enable functionality necessary for SEABIOS to run
[palacios.git] / palacios / src / interfaces / vmm_numa.c
index 9630cd9..4e2a76d 100644 (file)
@@ -28,7 +28,7 @@ static struct v3_numa_hooks * numa_hooks = NULL;
 
 void V3_Init_NUMA(struct v3_numa_hooks * hooks) {
     numa_hooks = hooks;
-    V3_Print("V3 NUMA interface initialized\n");
+    V3_Print(VM_NONE, VCORE_NONE, "V3 NUMA interface initialized\n");
     return;
 }
 
@@ -49,7 +49,7 @@ int v3_numa_gpa_to_node(struct v3_vm_info * vm, addr_t gpa) {
     }
 
     if (v3_gpa_to_hpa(&(vm->cores[0]), gpa, &hpa) == -1) {
-       PrintError("Tried to find NUMA node for invalid GPA (%p)\n", (void *)gpa);
+       PrintError(vm, VCORE_NONE, "Tried to find NUMA node for invalid GPA (%p)\n", (void *)gpa);
        return -1;
     }