From mboxrd@z Thu Jan 1 00:00:00 1970 From: Isaku Yamahata Subject: [PATCH 18/21] configure: add CONFIG_POSTCOPY option Date: Thu, 29 Dec 2011 10:25:57 +0900 Message-ID: References: Cc: yamahata@valinux.co.jp, t.hirofuchi@aist.go.jp, satoshi.itoh@aist.go.jp To: kvm@vger.kernel.org, qemu-devel@nongnu.org Return-path: Received: from mail.valinux.co.jp ([210.128.90.3]:47833 "EHLO mail.valinux.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754716Ab1L2B0E (ORCPT ); Wed, 28 Dec 2011 20:26:04 -0500 In-Reply-To: In-Reply-To: References: Sender: kvm-owner@vger.kernel.org List-ID: Add enable/disable postcopy mode. No dynamic test yet. Signed-off-by: Isaku Yamahata --- configure | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 640e815..440fa9e 100755 --- a/configure +++ b/configure @@ -190,6 +190,7 @@ opengl="" zlib="yes" guest_agent="yes" libiscsi="" +postcopy="yes" # parse CC options first for opt do @@ -789,6 +790,10 @@ for opt do ;; --disable-guest-agent) guest_agent="no" ;; + --enable-postcopy) postcopy="yes" + ;; + --disable-postcopy) postcopy="no" + ;; *) echo "ERROR: unknown option $opt"; show_help="yes" ;; esac @@ -1075,6 +1080,8 @@ echo " --disable-usb-redir disable usb network redirection support" echo " --enable-usb-redir enable usb network redirection support" echo " --disable-guest-agent disable building of the QEMU Guest Agent" echo " --enable-guest-agent enable building of the QEMU Guest Agent" +echo " --disable-postcopy disable postcopy mode for live migration" +echo " --enable-postcopy enable postcopy mode for live migration" echo "" echo "NOTE: The object files are built at the place where configure is launched" exit 1 @@ -2879,6 +2886,7 @@ echo "usb net redir $usb_redir" echo "OpenGL support $opengl" echo "libiscsi support $libiscsi" echo "build guest agent $guest_agent" +echo "postcopy support $postcopy" if test "$sdl_too_old" = "yes"; then echo "-> Your SDL version is too old - please upgrade to have SDL support" @@ -3192,6 +3200,10 @@ if test "$libiscsi" = "yes" ; then echo "CONFIG_LIBISCSI=y" >> $config_host_mak fi +if test "$postcopy" = "yes" ; then + echo "CONFIG_POSTCOPY=y" >> $config_host_mak +fi + # XXX: suppress that if [ "$bsd" = "yes" ] ; then echo "CONFIG_BSD=y" >> $config_host_mak -- 1.7.1.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:33939) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rg4l8-0005M9-Em for qemu-devel@nongnu.org; Wed, 28 Dec 2011 20:26:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rg4l0-0004Kb-MD for qemu-devel@nongnu.org; Wed, 28 Dec 2011 20:26:17 -0500 Received: from mail.valinux.co.jp ([210.128.90.3]:42984) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rg4l0-0004JD-5n for qemu-devel@nongnu.org; Wed, 28 Dec 2011 20:26:10 -0500 From: Isaku Yamahata Date: Thu, 29 Dec 2011 10:25:57 +0900 Message-Id: In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 18/21] configure: add CONFIG_POSTCOPY option List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kvm@vger.kernel.org, qemu-devel@nongnu.org Cc: yamahata@valinux.co.jp, t.hirofuchi@aist.go.jp, satoshi.itoh@aist.go.jp Add enable/disable postcopy mode. No dynamic test yet. Signed-off-by: Isaku Yamahata --- configure | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 640e815..440fa9e 100755 --- a/configure +++ b/configure @@ -190,6 +190,7 @@ opengl="" zlib="yes" guest_agent="yes" libiscsi="" +postcopy="yes" # parse CC options first for opt do @@ -789,6 +790,10 @@ for opt do ;; --disable-guest-agent) guest_agent="no" ;; + --enable-postcopy) postcopy="yes" + ;; + --disable-postcopy) postcopy="no" + ;; *) echo "ERROR: unknown option $opt"; show_help="yes" ;; esac @@ -1075,6 +1080,8 @@ echo " --disable-usb-redir disable usb network redirection support" echo " --enable-usb-redir enable usb network redirection support" echo " --disable-guest-agent disable building of the QEMU Guest Agent" echo " --enable-guest-agent enable building of the QEMU Guest Agent" +echo " --disable-postcopy disable postcopy mode for live migration" +echo " --enable-postcopy enable postcopy mode for live migration" echo "" echo "NOTE: The object files are built at the place where configure is launched" exit 1 @@ -2879,6 +2886,7 @@ echo "usb net redir $usb_redir" echo "OpenGL support $opengl" echo "libiscsi support $libiscsi" echo "build guest agent $guest_agent" +echo "postcopy support $postcopy" if test "$sdl_too_old" = "yes"; then echo "-> Your SDL version is too old - please upgrade to have SDL support" @@ -3192,6 +3200,10 @@ if test "$libiscsi" = "yes" ; then echo "CONFIG_LIBISCSI=y" >> $config_host_mak fi +if test "$postcopy" = "yes" ; then + echo "CONFIG_POSTCOPY=y" >> $config_host_mak +fi + # XXX: suppress that if [ "$bsd" = "yes" ] ; then echo "CONFIG_BSD=y" >> $config_host_mak -- 1.7.1.1