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_kvm_32pae.h
index 473414b..8174dc3 100644 (file)
@@ -3,7 +3,7 @@
 #ifdef V3_CONFIG_SHADOW_CACHE
 
 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;
 }
 
@@ -21,13 +21,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;
 }