diff mbox

qemu-kvm: x86: Drop redundant tpr prototypes

Message ID 4A184D8D.7050800@web.de (mailing list archive)
State New, archived
Headers show

Commit Message

Jan Kiszka May 23, 2009, 7:25 p.m. UTC
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

 target-i386/libkvm.h |   25 -------------------------
 1 files changed, 0 insertions(+), 25 deletions(-)

Comments

Avi Kivity May 24, 2009, 8:26 a.m. UTC | #1
Jan Kiszka wrote:
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>   

Applied, thanks.
diff mbox

Patch

diff --git a/target-i386/libkvm.h b/target-i386/libkvm.h
index 307fbcc..081e010 100644
--- a/target-i386/libkvm.h
+++ b/target-i386/libkvm.h
@@ -25,31 +25,6 @@ 
 
 int kvm_set_tss_addr(kvm_context_t kvm, unsigned long addr);
 
-#ifdef KVM_CAP_VAPIC
-
-/*!
- * \brief Enable kernel tpr access reporting
- *
- * When tpr access reporting is enabled, the kernel will call the
- * ->tpr_access() callback every time the guest vcpu accesses the tpr.
- *
- * \param kvm Pointer to the current kvm_context
- * \param vcpu vcpu to enable tpr access reporting on
- */
-int kvm_enable_tpr_access_reporting(kvm_context_t kvm, int vcpu);
-
-/*!
- * \brief Disable kernel tpr access reporting
- *
- * Undoes the effect of kvm_enable_tpr_access_reporting().
- *
- * \param kvm Pointer to the current kvm_context
- * \param vcpu vcpu to disable tpr access reporting on
- */
-int kvm_disable_tpr_access_reporting(kvm_context_t kvm, int vcpu);
-
-#endif
-
 #define smp_wmb()   asm volatile("" ::: "memory")
 
 #endif