From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M22np-0005Qv-Ep for qemu-devel@nongnu.org; Thu, 07 May 2009 08:34:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M22nk-0005KK-8n for qemu-devel@nongnu.org; Thu, 07 May 2009 08:34:16 -0400 Received: from [199.232.76.173] (port=57311 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M22nj-0005Jx-Od for qemu-devel@nongnu.org; Thu, 07 May 2009 08:34:11 -0400 Received: from relay3.sgi.com ([192.48.156.57]:48629 helo=relay.sgi.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M22nj-0003gr-AV for qemu-devel@nongnu.org; Thu, 07 May 2009 08:34:11 -0400 Message-ID: <4A02D539.6040705@sgi.com> Date: Thu, 07 May 2009 14:34:01 +0200 From: Jes Sorensen MIME-Version: 1.0 References: <4A01AFE8.3020008@sgi.com> <706158FABBBA044BAD4FE898A02E4BC236AC6F59@pdsmsx503.ccr.corp.intel.com> <4A02AA81.90809@redhat.com> <4A02BD27.5050401@siemens.com> <4A02BF59.6030103@redhat.com> In-Reply-To: <4A02BF59.6030103@redhat.com> Content-Type: multipart/mixed; boundary="------------090506060903020308080601" Subject: [Qemu-devel] Re: [patch] fix qemu-kvm to build when gdbstub is disabled List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: "kvm-ia64@vger.kernel.org" , Anthony Liguori , "kvm@vger.kernel.org" , qemu-devel This is a multi-part message in MIME format. --------------090506060903020308080601 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Avi Kivity wrote: > I agree, unless > > - we want to make gdbstub support configurable (don't see any > overwhelming reason for this, but maybe others do) > - we want to merge ia64 kvm support upstream, and don't want to impose > gdbstub support (though I'd recommend properly implementing gdbstub) > > In any case, I'm okay with dropping the check upstream and applying the > local fixup. Hi, Here's a patch that fixes the #ifndef to make it the #ifdef as it was intended. I am quite fine with us trying to drop all the #ifdefs and introduce noop wrappers for archs that do not provide the gdbstubs (ie. ia64), but to start with we better just fix the #ifndef to make it behave like it was originally intended. Cheers, Jes --------------090506060903020308080601 Content-Type: text/x-patch; name="0001-qemu-kdbstub.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="0001-qemu-kdbstub.patch" Fix incorrect #ifndef for CONFIG_GETSTUB, which should have been an #ifdef. Signed-off-by: Jes Sorensen --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: qemu/vl.c =================================================================== --- qemu.orig/vl.c +++ qemu/vl.c @@ -4350,7 +4350,7 @@ } if (cpu_can_run(env)) ret = qemu_cpu_exec(env); -#ifndef CONFIG_GDBSTUB +#ifdef CONFIG_GDBSTUB if (ret == EXCP_DEBUG) { gdb_set_stop_cpu(env); debug_requested = 1; --------------090506060903020308080601--