From patchwork Mon Feb 22 21:26:45 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcelo Tosatti X-Patchwork-Id: 46012 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 977DEB7CEA for ; Tue, 23 Feb 2010 08:37:13 +1100 (EST) Received: from localhost ([127.0.0.1]:48989 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Njfvq-00005J-Mf for incoming@patchwork.ozlabs.org; Mon, 22 Feb 2010 16:35:10 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Njfoq-0006ui-LH for qemu-devel@nongnu.org; Mon, 22 Feb 2010 16:27:56 -0500 Received: from [199.232.76.173] (port=56404 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Njfop-0006uT-VO for qemu-devel@nongnu.org; Mon, 22 Feb 2010 16:27:56 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Njfoo-00037F-VF for qemu-devel@nongnu.org; Mon, 22 Feb 2010 16:27:55 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28974) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Njfoo-00036v-8c for qemu-devel@nongnu.org; Mon, 22 Feb 2010 16:27:54 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o1MLRqjt029113 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 22 Feb 2010 16:27:52 -0500 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o1MLRpsM009055; Mon, 22 Feb 2010 16:27:51 -0500 Received: from amt.cnet (vpn-11-163.rdu.redhat.com [10.11.11.163]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id o1MLRows016413; Mon, 22 Feb 2010 16:27:50 -0500 Received: from amt.cnet (amt.cnet [127.0.0.1]) by amt.cnet (Postfix) with ESMTP id 1863966E0F2; Mon, 22 Feb 2010 18:27:08 -0300 (BRT) Received: (from marcelo@localhost) by amt.cnet (8.14.3/8.14.3/Submit) id o1MLR5lx000786; Mon, 22 Feb 2010 18:27:05 -0300 From: Marcelo Tosatti To: Anthony Liguori Date: Mon, 22 Feb 2010 18:26:45 -0300 Message-Id: <62f734a0d57306523e6ba0e7bd606e0d55449671.1266874009.git.mtosatti@redhat.com> In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Jes Sorensen , qemu-devel@nongnu.org, kvm@vger.kernel.org, Avi Kivity Subject: [Qemu-devel] [PATCH 3/8] kvm: Kill CR3_CACHE feature references X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Jes Sorensen Remove all references to KVM_CR3_CACHE as it was never implemented. Signed-off-by: Jes Sorensen Signed-off-by: Avi Kivity --- target-i386/kvm.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 0d08cd5..5d9aecc 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -158,9 +158,6 @@ struct kvm_para_features { #ifdef KVM_CAP_PV_MMU { KVM_CAP_PV_MMU, KVM_FEATURE_MMU_OP }, #endif -#ifdef KVM_CAP_CR3_CACHE - { KVM_CAP_CR3_CACHE, KVM_FEATURE_CR3_CACHE }, -#endif { -1, -1 } };