[PATCH 1/3] KVM: Handle rdmsr(MSR_EFER)

From: Avi Kivity
Date: Mon Nov 20 2006 - 05:27:40 EST


From: Yaniv Kamay <yaniv@xxxxxxxxxxxx>

Allow guests to read the EFER msr.

Signed-off-by: Yaniv Kamay <yaniv@xxxxxxxxxxxx>
Signed-off-by: Avi Kivity <avi@xxxxxxxxxxxx>

Index: linux-2.6/drivers/kvm/kvm_main.c
===================================================================
--- linux-2.6.orig/drivers/kvm/kvm_main.c
+++ linux-2.6/drivers/kvm/kvm_main.c
@@ -2323,6 +2323,9 @@ static int get_msr(struct kvm_vcpu *vcpu
case MSR_GS_BASE:
data = vmcs_readl(GUEST_GS_BASE);
break;
+ case MSR_EFER:
+ data = vcpu->shadow_efer;
+ break;
#endif
case MSR_IA32_TIME_STAMP_COUNTER:
data = guest_read_tsc();
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/