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.


architecture independence work
[palacios.git] / palacios / src / palacios / vmm_shadow_paging.c
index 3454039..70a2c77 100644 (file)
@@ -160,7 +160,6 @@ int handle_shadow_pte32_fault(struct guest_info* info,
     return -1;
   }
 
-
   shadow_pte_access = can_access_pte32(shadow_pte, fault_addr, error_code);
 
   if (shadow_pte_access == PT_ENTRY_NOT_PRESENT) {
@@ -185,7 +184,7 @@ int handle_shadow_pte32_fault(struct guest_info* info,
 
     shadow_pte_entry->present = guest_pte_entry->present;
     shadow_pte_entry->user_page = guest_pte_entry->user_page;
-    
+
     //set according to VMM policy
     shadow_pte_entry->write_through = 0;
     shadow_pte_entry->cache_disable = 0;
@@ -216,7 +215,7 @@ int handle_shadow_pte32_fault(struct guest_info* info,
     //
     // Page Table Entry marked non-user
     //
-    
+
     PrintDebug("Shadow Paging User access error\n");
     return -1;
   } else if (shadow_pte_access == PT_ACCESS_OK) {
@@ -228,7 +227,6 @@ int handle_shadow_pte32_fault(struct guest_info* info,
     return -1;
   }
 
-
   return 0;
 }