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 MSR hook framework
[palacios.git] / palacios / src / palacios / vm_guest.c
index e47c1fb..c7512b7 100644 (file)
@@ -51,6 +51,8 @@ v3_vm_cpu_mode_t v3_get_cpu_mode(struct guest_info * info) {
   } else if ((efer->lma == 1) && (cs->long_mode == 1)) {
     return LONG;
   } else {
+    return -1;
+    // What about LONG_16_COMPAT???
     return LONG_32_COMPAT;
   }
 }