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.


Minor change to shadow paging to make sure it initializes unless nested
Patrick Bridges [Thu, 29 Jul 2010 19:03:45 +0000 (13:03 -0600)]
explicitly requested

palacios/src/palacios/vmm_shadow_paging.c

index f4e9f32..da219c2 100644 (file)
@@ -146,8 +146,8 @@ int v3_init_shdw_impl(struct v3_vm_info * vm) {
     struct v3_shdw_pg_impl * impl = NULL;
    
     PrintDebug("Checking if shadow paging requested.\n");
-    if (type_name && (strcasecmp(type_name, "shadow") != 0)) {
-       PrintDebug("Shadow paging not specified for VM.\n");
+    if (type_name && (strcasecmp(type_name, "nested") == 0)) {
+       PrintDebug("Nested paging specified - not initializing shadow paging.\n");
        return 0;
     }