From patchwork Thu Feb 18 09:57:00 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jes Sorensen X-Patchwork-Id: 80233 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o1I9vcE9032023 for ; Thu, 18 Feb 2010 09:57:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755996Ab0BRJ5H (ORCPT ); Thu, 18 Feb 2010 04:57:07 -0500 Received: from mx1.redhat.com ([209.132.183.28]:29126 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755951Ab0BRJ5F (ORCPT ); Thu, 18 Feb 2010 04:57:05 -0500 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o1I9v5c2002695 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 18 Feb 2010 04:57:05 -0500 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o1I9v1VE003934; Thu, 18 Feb 2010 04:57:03 -0500 From: Jes.Sorensen@redhat.com To: avi@redhat.com, mtosatti@redhat.com, kvm@vger.kernel.org Subject: [PATCH] Remove all references to KVM_CR3_CACHE Date: Thu, 18 Feb 2010 10:57:00 +0100 Message-Id: <1266487020-17883-1-git-send-email-Jes.Sorensen@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 18 Feb 2010 09:57:38 +0000 (UTC) diff --git a/qemu-kvm-x86.c b/qemu-kvm-x86.c index 7f820a4..e57c479 100644 --- a/qemu-kvm-x86.c +++ b/qemu-kvm-x86.c @@ -1248,9 +1248,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 } }; diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 504f501..36fa736 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -154,9 +154,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 } };