From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Liguori Subject: Re: [RFC PATCH 15/20] Introduce FT mode support to configure. Date: Thu, 22 Apr 2010 14:38:20 -0500 Message-ID: <4BD0A5AC.8080100@linux.vnet.ibm.com> References: <1271829445-5328-1-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> <1271829445-5328-16-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org, qemu-devel@nongnu.org, avi@redhat.com, Anthony Liguori , mtosatti@redhat.com, ohmura.kei@lab.ntt.co.jp, yoshikawa.takuya@oss.ntt.co.jp To: Yoshiaki Tamura Return-path: Received: from e4.ny.us.ibm.com ([32.97.182.144]:45808 "EHLO e4.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756674Ab0DVTi1 (ORCPT ); Thu, 22 Apr 2010 15:38:27 -0400 Received: from d01relay05.pok.ibm.com (d01relay05.pok.ibm.com [9.56.227.237]) by e4.ny.us.ibm.com (8.14.3/8.13.1) with ESMTP id o3MJQOwv020386 for ; Thu, 22 Apr 2010 15:26:24 -0400 Received: from d01av03.pok.ibm.com (d01av03.pok.ibm.com [9.56.224.217]) by d01relay05.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o3MJcQ30162204 for ; Thu, 22 Apr 2010 15:38:26 -0400 Received: from d01av03.pok.ibm.com (loopback [127.0.0.1]) by d01av03.pok.ibm.com (8.14.3/8.13.1/NCO v10.0 AVout) with ESMTP id o3MJcOaE032732 for ; Thu, 22 Apr 2010 16:38:26 -0300 In-Reply-To: <1271829445-5328-16-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> Sender: kvm-owner@vger.kernel.org List-ID: On 04/21/2010 12:57 AM, Yoshiaki Tamura wrote: > Signed-off-by: Yoshiaki Tamura > No need for this. Regards, Anthony Liguori > --- > configure | 8 ++++++++ > 1 files changed, 8 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index 046c591..f0682d4 100755 > --- a/configure > +++ b/configure > @@ -298,6 +298,7 @@ bsd_user="no" > guest_base="" > uname_release="" > io_thread="no" > +ft_mode="no" > mixemu="no" > kvm_trace="no" > kvm_cap_pit="" > @@ -671,6 +672,8 @@ for opt do > ;; > --enable-io-thread) io_thread="yes" > ;; > + --enable-ft-mode) ft_mode="yes" > + ;; > --disable-blobs) blobs="no" > ;; > --kerneldir=*) kerneldir="$optarg" > @@ -840,6 +843,7 @@ echo " --enable-vde enable support for vde network" > echo " --disable-linux-aio disable Linux AIO support" > echo " --enable-linux-aio enable Linux AIO support" > echo " --enable-io-thread enable IO thread" > +echo " --enable-ft-mode enable FT mode support" > echo " --disable-blobs disable installing provided firmware blobs" > echo " --kerneldir=PATH look for kernel includes in PATH" > echo " --with-kvm-trace enable building the KVM module with the kvm trace option" > @@ -2117,6 +2121,7 @@ echo "GUEST_BASE $guest_base" > echo "PIE user targets $user_pie" > echo "vde support $vde" > echo "IO thread $io_thread" > +echo "FT mode support $ft_mode" > echo "Linux AIO support $linux_aio" > echo "Install blobs $blobs" > echo "KVM support $kvm" > @@ -2318,6 +2323,9 @@ fi > if test "$io_thread" = "yes" ; then > echo "CONFIG_IOTHREAD=y">> $config_host_mak > fi > +if test "$ft_mode" = "yes" ; then > + echo "CONFIG_FT_MODE=y">> $config_host_mak > +fi > if test "$linux_aio" = "yes" ; then > echo "CONFIG_LINUX_AIO=y">> $config_host_mak > fi >