From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Liguori Subject: Re: [PATCH] Only compile KVM support for matching CPU types Date: Wed, 24 Jun 2009 18:29:56 -0500 Message-ID: <4A42B6F4.3070909@us.ibm.com> References: <1245883217-27455-1-git-send-email-aliguori@us.ibm.com> <1245884974.4479.1.camel@t61p> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org, Avi Kivity , Hollis Blanchard To: kirkland@canonical.com Return-path: Received: from e37.co.us.ibm.com ([32.97.110.158]:55995 "EHLO e37.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752091AbZFXX3z (ORCPT ); Wed, 24 Jun 2009 19:29:55 -0400 Received: from d03relay02.boulder.ibm.com (d03relay02.boulder.ibm.com [9.17.195.227]) by e37.co.us.ibm.com (8.13.1/8.13.1) with ESMTP id n5ONTFJ2015423 for ; Wed, 24 Jun 2009 17:29:15 -0600 Received: from d03av01.boulder.ibm.com (d03av01.boulder.ibm.com [9.17.195.167]) by d03relay02.boulder.ibm.com (8.13.8/8.13.8/NCO v9.2) with ESMTP id n5ONTwST251400 for ; Wed, 24 Jun 2009 17:29:58 -0600 Received: from d03av01.boulder.ibm.com (loopback [127.0.0.1]) by d03av01.boulder.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id n5ONTv0Z030360 for ; Wed, 24 Jun 2009 17:29:57 -0600 In-Reply-To: <1245884974.4479.1.camel@t61p> Sender: kvm-owner@vger.kernel.org List-ID: Dustin Kirkland wrote: > On Wed, 2009-06-24 at 17:40 -0500, Anthony Liguori wrote: > >> I don't know why this is disabled for qemu-kvm.git. >> >> Signed-off-by: Anthony Liguori >> --- >> configure | 5 +---- >> 1 files changed, 1 insertions(+), 4 deletions(-) >> >> diff --git a/configure b/configure >> index 4bad3c3..1b73eaf 100755 >> --- a/configure >> +++ b/configure >> @@ -2117,13 +2117,12 @@ configure_kvm() { >> fi >> } >> >> -if [ use_upstream_kvm = yes ]; then >> - >> # Make sure the target and host cpus are compatible >> if test ! \( "$target_cpu" = "$cpu" -o \ >> \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \ >> \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \ >> \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then >> + \( "$target_cpu" = "ia64" -a "$cpu" = "ia64" \) \) ; then >> > > Almost... > > - \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then > + \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) -o \ > + \( "$target_cpu" = "ia64" -a "$cpu" = "ia64" \) \) ; then > Yeah, I have that locally but I forgot to commit --amend. doh! Regards, Anthony Liguori > :-Dustin > -- Regards, Anthony Liguori