From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60580) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAIDs-0001CC-Tu for qemu-devel@nongnu.org; Thu, 14 Apr 2011 04:48:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QAIDs-0007oW-1P for qemu-devel@nongnu.org; Thu, 14 Apr 2011 04:48:20 -0400 Received: from mail-vx0-f173.google.com ([209.85.220.173]:44399) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAIDr-0007oP-PU for qemu-devel@nongnu.org; Thu, 14 Apr 2011 04:48:19 -0400 Received: by vxb41 with SMTP id 41so1331590vxb.4 for ; Thu, 14 Apr 2011 01:48:19 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20110413175825.24079.95795.malonedeb@wampee.canonical.com> References: <20110413175825.24079.95795.malonedeb@wampee.canonical.com> <20110413175825.24079.95795.malonedeb@wampee.canonical.com> Date: Thu, 14 Apr 2011 09:48:18 +0100 Message-ID: From: Stefan Hajnoczi Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [Qemu-devel] [Bug 760060] [NEW] Open Solaris 2009 Assertion `size' failed List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Bug 760060 <760060@bugs.launchpad.net> Cc: qemu-devel@nongnu.org On Wed, Apr 13, 2011 at 6:58 PM, Nigel Horne <760060@bugs.launchpad.net> wrote: > qemu-system-sparc: /home/njh/src/qemu/exec.c:2614: > cpu_register_physical_memory_offset: Assertion `size' failed. I you ./configure with --disable-strip and run under GDB using "gdb --args " then you can get a backtrace. Just enter the GDB "r" command to run QEMU and then the "bt" command to get a backtrace once the assertion has triggered. The backtrace will show which device is registering a zero-size memory region. It will be easy to fix this once we have a backtrace. Stefan