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.


Lots of pedantic error checking in Palacios proper, especially for memory
[palacios.git] / palacios / src / palacios / mmu / vmm_shdw_pg_kvm_32.h
index 8a2e094..7035d16 100644 (file)
@@ -85,7 +85,7 @@ static inline int fix_write_pf_32(struct guest_info * core, pte32_t * shadow_pte
     }
                        
     if (guest_pte->present == 0) { 
-       memset((void *)shadow_pte, 0, sizeof(struct pte32));
+       memset((void *)shadow_pte, 0, sizeof(uint32_t));
        PrintDebug("\twrpf: guest non present\n");
        return 0;
     }