From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35836) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SYz6C-0002mT-Eu for qemu-devel@nongnu.org; Mon, 28 May 2012 08:31:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SYz6A-000066-Bc for qemu-devel@nongnu.org; Mon, 28 May 2012 08:31:00 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:48017) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SYz6A-0008VZ-1d for qemu-devel@nongnu.org; Mon, 28 May 2012 08:30:58 -0400 Received: by lbok6 with SMTP id k6so2329590lbo.4 for ; Mon, 28 May 2012 05:30:55 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: Date: Mon, 28 May 2012 13:30:55 +0100 Message-ID: From: Stefan Hajnoczi Content-Type: text/plain; charset=Big5 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] Tracing message for mu List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?Big5?B?Q2hhcmxlcy5Uc2FpLb2ysk2u/C2s46hztW+uabOh?= Cc: Hans de Goede , =?Big5?B?Sm9uYWguV3Utp2SnZ6tqLazjqHO1b65ps6E=?= , "qemu-devel@nongnu.org" On Sat, May 26, 2012 at 7:50 AM, Charles.Tsai-=BD=B2=B2M=AE=FC-=AC=E3=A8s= =B5o=AEi=B3=A1 wrote: > Hans replied me back and he suggested me to use strace. > Hopefully, this issue can be resolved. > > Additionally, we encountered a tough issue right now. > When we ran a 64-bit Windows 7 VM overnight, the kvm process was killed f= or some reasons. > > Here is the qemu version I copied from the screen > > "QEMU emulator version 1.0 (qemu-kvm-devel), Copyright (c) 2003-2008 Fabr= ice Bellard" > > The Qemu source is from Hans. Any suggestion to attack this issue? Next time ensure that core dumps are enabled: $ ulimit -c unlimited # enable core dumps $ qemu-kvm ... If it crashes you'll have a core file that the gdb debugger can process. It's also worth checking dmesg(1) output to see if your system ran out of memory and the kernel killed the qemu-kvm process to free memory. Hope this helps, Stefan