X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_ctrl_regs.c;h=4575f9951f51c95e97dddabac944cfcf5cf98baa;hb=f84bd0ca67af7c0a1143d5e279e0af408729128e;hp=89d896baee3425b8245a6aae56a8e7c53378413e;hpb=9499a207c37ebd0eac1e9f62b4600c448101d7b0;p=palacios.git diff --git a/palacios/src/palacios/vmm_ctrl_regs.c b/palacios/src/palacios/vmm_ctrl_regs.c index 89d896b..4575f99 100644 --- a/palacios/src/palacios/vmm_ctrl_regs.c +++ b/palacios/src/palacios/vmm_ctrl_regs.c @@ -20,15 +20,6 @@ #endif -// Set to 1 if CR3 reload with same value shall not -// force a shadow page table flush -// It makes windows loading MUCH faster. -// Note that this optimization appears to fail with a 2.6 linux kernel -#define CR3_RELOAD_OPTIMIZATION 1 - - - - @@ -247,11 +238,20 @@ int handle_cr3_write(struct guest_info * info) { struct cr3_32 * new_cr3 = (struct cr3_32 *)(dec_instr.src_operand.operand); struct cr3_32 * guest_cr3 = (struct cr3_32 *)&(info->shdw_pg_state.guest_cr3); struct cr3_32 * shadow_cr3 = (struct cr3_32 *)&(info->shdw_pg_state.shadow_cr3); + int cached = 0; + PrintDebug("Old Shadow CR3=%x; Old Guest CR3=%x\n", *(uint_t*)shadow_cr3, *(uint_t*)guest_cr3); - if (!CR3_RELOAD_OPTIMIZATION || !CR3_32_SAME_BASE(new_cr3, guest_cr3)) { + + cached = cache_page_tables32(info, CR3_TO_PDE32(*(addr_t *)new_cr3)); + if (cached == -1) { + PrintError("CR3 Cache failed\n"); + return -1; + } else if (cached == 0) { + + addr_t shadow_pt; @@ -262,7 +262,9 @@ int handle_cr3_write(struct guest_info * info) { shadow_pt = create_new_shadow_pt32(); shadow_cr3->pdt_base_addr = PD32_BASE_ADDR(shadow_pt); - } + } else { + PrintDebug("Reusing cached shadow Page table\n"); + } shadow_cr3->pwt = new_cr3->pwt; shadow_cr3->pcd = new_cr3->pcd; @@ -337,3 +339,7 @@ int handle_cr3_read(struct guest_info * info) { return 0; } + + + +