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.


Context-based output infrastructure (V3_Print, etc) and modifications to use it
[palacios.git] / palacios / src / palacios / mmu / vmm_shdw_pg_swapbypass_32pae.h
index d6ef1c7..2c79599 100644 (file)
@@ -19,7 +19,7 @@
 
 
 static inline int activate_shadow_pt_32pae(struct guest_info * info) {
-    PrintError("Activating 32 bit PAE page tables not implemented\n");
+    PrintError(info->vm_info, info, "Activating 32 bit PAE page tables not implemented\n");
     return -1;
 }
 
@@ -37,13 +37,13 @@ static inline int activate_shadow_pt_32pae(struct guest_info * info) {
  */
 
 static inline int handle_shadow_pagefault_32pae(struct guest_info * info, addr_t fault_addr, pf_error_t error_code) {
-    PrintError("32 bit PAE shadow paging not implemented\n");
+    PrintError(info->vm_info, info, "32 bit PAE shadow paging not implemented\n");
     return -1;
 }
 
 
 static inline int handle_shadow_invlpg_32pae(struct guest_info * info, addr_t vaddr) {
-    PrintError("32 bit PAE shadow paging not implemented\n");
+    PrintError(info->vm_info, info, "32 bit PAE shadow paging not implemented\n");
     return -1;
 }