diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2009-04-20 12:10:07 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-06-10 04:48:51 -0400 |
commit | d6a8c875f35a6e1b3fb3f21e93eabb183b1f39ee (patch) | |
tree | 18d4d9b02194aac6f602921479e4018a137d7538 | |
parent | fe8e7f83de3f0979f13f57992cb33e4a8041272d (diff) |
KVM: Drop request_nmi from stats
The stats entry request_nmi is no longer used as the related user space
interface was dropped. So clean it up.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 1 | ||||
-rw-r--r-- | arch/x86/kvm/x86.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 253d8f669cf6..ab7de4a11955 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h | |||
@@ -441,7 +441,6 @@ struct kvm_vcpu_stat { | |||
441 | u32 halt_exits; | 441 | u32 halt_exits; |
442 | u32 halt_wakeup; | 442 | u32 halt_wakeup; |
443 | u32 request_irq_exits; | 443 | u32 request_irq_exits; |
444 | u32 request_nmi_exits; | ||
445 | u32 irq_exits; | 444 | u32 irq_exits; |
446 | u32 host_state_reload; | 445 | u32 host_state_reload; |
447 | u32 efer_reload; | 446 | u32 efer_reload; |
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index dd056826f675..a0faa4882f84 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -91,7 +91,6 @@ struct kvm_stats_debugfs_item debugfs_entries[] = { | |||
91 | { "halt_wakeup", VCPU_STAT(halt_wakeup) }, | 91 | { "halt_wakeup", VCPU_STAT(halt_wakeup) }, |
92 | { "hypercalls", VCPU_STAT(hypercalls) }, | 92 | { "hypercalls", VCPU_STAT(hypercalls) }, |
93 | { "request_irq", VCPU_STAT(request_irq_exits) }, | 93 | { "request_irq", VCPU_STAT(request_irq_exits) }, |
94 | { "request_nmi", VCPU_STAT(request_nmi_exits) }, | ||
95 | { "irq_exits", VCPU_STAT(irq_exits) }, | 94 | { "irq_exits", VCPU_STAT(irq_exits) }, |
96 | { "host_state_reload", VCPU_STAT(host_state_reload) }, | 95 | { "host_state_reload", VCPU_STAT(host_state_reload) }, |
97 | { "efer_reload", VCPU_STAT(efer_reload) }, | 96 | { "efer_reload", VCPU_STAT(efer_reload) }, |