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.


compilation fix in vmm_debug.c
Kyle Hale [Sun, 8 Jul 2012 17:45:12 +0000 (12:45 -0500)]
palacios/src/palacios/vmm_debug.c

index 4814d5d..2a5bd94 100644 (file)
@@ -43,9 +43,11 @@ static int core_handler(struct guest_info * core, uint32_t cmd) {
 
 
     switch (cmd) {
+#ifdef V3_CONFIG_TELEMETRY
        case PRINT_TELEMETRY: 
            v3_print_core_telemetry(core);
            break;
+#endif
        
        case PRINT_CORE_STATE:
            v3_raise_barrier(core->vm_info, NULL);
@@ -79,7 +81,9 @@ static int core_handler(struct guest_info * core, uint32_t cmd) {
        case PRINT_STATE:
            v3_raise_barrier(core->vm_info, NULL);
 
+#ifdef V3_CONFIG_TELEMETRY
            v3_print_core_telemetry(core);
+#endif
            v3_print_guest_state(core);
            v3_print_arch_state(core);