]> Git Repo - linux.git/commitdiff
kvm: x86: remove efer_reload entry in kvm_vcpu_stat
authorLongpeng(Mike) <[email protected]>
Fri, 26 Jan 2018 09:34:08 +0000 (17:34 +0800)
committerRadim Krčmář <[email protected]>
Wed, 31 Jan 2018 17:25:35 +0000 (18:25 +0100)
The efer_reload is never used since
commit 26bb0981b3ff ("KVM: VMX: Use shared msr infrastructure"),
so remove it.

Signed-off-by: Longpeng(Mike) <[email protected]>
Signed-off-by: Radim Krčmář <[email protected]>
arch/x86/include/asm/kvm_host.h
arch/x86/kvm/x86.c

index ea7e40e9c1f0f48ed1f15d0238a2ff6c025c7c09..dd6f57a54a2626c080c8505cd670ef8c54c7bf56 100644 (file)
@@ -895,7 +895,6 @@ struct kvm_vcpu_stat {
        u64 request_irq_exits;
        u64 irq_exits;
        u64 host_state_reload;
-       u64 efer_reload;
        u64 fpu_reload;
        u64 insn_emulation;
        u64 insn_emulation_fail;
index 01571102b50c9591fd114789fcc7dce7545838d2..c13cd14c47809376656296b0e1ebe331d70b908a 100644 (file)
@@ -177,7 +177,6 @@ struct kvm_stats_debugfs_item debugfs_entries[] = {
        { "request_irq", VCPU_STAT(request_irq_exits) },
        { "irq_exits", VCPU_STAT(irq_exits) },
        { "host_state_reload", VCPU_STAT(host_state_reload) },
-       { "efer_reload", VCPU_STAT(efer_reload) },
        { "fpu_reload", VCPU_STAT(fpu_reload) },
        { "insn_emulation", VCPU_STAT(insn_emulation) },
        { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
This page took 0.072487 seconds and 4 git commands to generate.