The patch titled KVM: Handle rdmsr(MSR_EFER) has been removed from the -mm tree. Its filename was kvm-less-common-exit-handlers-handle-rdmsrmsr_efer.patch This patch was dropped because it was folded into kvm-userspace-interface.patch ------------------------------------------------------ Subject: KVM: Handle rdmsr(MSR_EFER) 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> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/kvm/kvm_main.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN drivers/kvm/kvm_main.c~kvm-less-common-exit-handlers-handle-rdmsrmsr_efer drivers/kvm/kvm_main.c --- a/drivers/kvm/kvm_main.c~kvm-less-common-exit-handlers-handle-rdmsrmsr_efer +++ a/drivers/kvm/kvm_main.c @@ -2286,6 +2286,9 @@ static int handle_rdmsr(struct kvm_vcpu case MSR_GS_BASE: data = vmcs_readl(GUEST_GS_BASE); break; + case MSR_EFER: + data = vcpu->shadow_efer; + break; #endif case MSR_IA32_SYSENTER_CS: data = vmcs_read32(GUEST_SYSENTER_CS); _ Patches currently in -mm which might be from yaniv@xxxxxxxxxxxx are kvm-userspace-interface.patch kvm-less-common-exit-handlers-handle-rdmsrmsr_efer.patch kvm-mmu.patch kvm-x86-emulator.patch kvm-x86-emulator-fix-emulator-mov-cr-decoding.patch kvm-amd-svm-add-architecture-definitions-for-amd-svm.patch kvm-amd-svm-enhance-x86-emulator.patch kvm-amd-svm-add-missing-tlb-flushes-to-the-guest-mmu.patch kvm-amd-svm-add-data-structures.patch kvm-amd-svm-implementation.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html