# HG changeset patch # User cegger # Date 1283345878 -7200 Allow paged real mode during vmrun emulation. Emulate cr0 and cr4 when guest does not intercept them. diff -r 0199b689a2d0 -r e0eae5b67977 xen/arch/x86/hvm/hvm.c --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -54,6 +54,7 @@ #include #include #include +#include #include #include #include @@ -1109,9 +1110,13 @@ int hvm_set_cr0(unsigned long value) /* ET is reserved and should be always be 1. */ value |= X86_CR0_ET; - if ( (value & (X86_CR0_PE | X86_CR0_PG)) == X86_CR0_PG ) + if ( !nestedhvm_vmentry_emulate(v) && + (value & (X86_CR0_PE | X86_CR0_PG)) == X86_CR0_PG ) goto gpf; + if ( nestedhvm_vcpu_in_guestmode(v) ) + value &= ~(X86_CR0_CD | X86_CR0_NW); + if ( (value & X86_CR0_PG) && !(old_value & X86_CR0_PG) ) { if ( v->arch.hvm_vcpu.guest_efer & EFER_LME ) @@ -1163,7 +1168,7 @@ int hvm_set_cr0(unsigned long value) } } - if ( has_arch_mmios(v->domain) ) + if ( !nestedhvm_vmentry_emulate(v) && has_arch_mmios(v->domain) ) { if ( (value & X86_CR0_CD) && !(value & X86_CR0_NW) ) {