From patchwork Sat May 23 19:25:01 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 25546 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n4NJPwqR018166 for ; Sat, 23 May 2009 19:25:58 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756709AbZEWTZJ (ORCPT ); Sat, 23 May 2009 15:25:09 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756625AbZEWTZI (ORCPT ); Sat, 23 May 2009 15:25:08 -0400 Received: from fmmailgate02.web.de ([217.72.192.227]:55872 "EHLO fmmailgate02.web.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756103AbZEWTZC (ORCPT ); Sat, 23 May 2009 15:25:02 -0400 Received: from smtp05.web.de (fmsmtp05.dlan.cinetic.de [172.20.4.166]) by fmmailgate02.web.de (Postfix) with ESMTP id 758DD100D75C7; Sat, 23 May 2009 21:25:02 +0200 (CEST) Received: from [92.74.56.143] (helo=[192.168.1.3]) by smtp05.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.110 #277) id 1M7wq6-00056m-00; Sat, 23 May 2009 21:25:02 +0200 Message-ID: <4A184D8D.7050800@web.de> Date: Sat, 23 May 2009 21:25:01 +0200 From: Jan Kiszka User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: Avi Kivity CC: kvm-devel Subject: [PATCH] qemu-kvm: x86: Drop redundant tpr prototypes X-Enigmail-Version: 0.95.7 X-Sender: jan.kiszka@web.de X-Provags-ID: V01U2FsdGVkX192DAp4Iw7Zm+KH7vdX2fXsHVaaqwxf2tMOcS8T PMG+wmesTEy9J4Iw+sP+v6QNu5+szJ2k0S30E1Y2+7hx/I5Tq3 WeDuyddow= Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Jan Kiszka --- target-i386/libkvm.h | 25 ------------------------- 1 files changed, 0 insertions(+), 25 deletions(-) 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