From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JvWlo-0005lR-VM for qemu-devel@nongnu.org; Mon, 12 May 2008 08:04:45 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JvWlo-0005kv-BI for qemu-devel@nongnu.org; Mon, 12 May 2008 08:04:44 -0400 Received: from [199.232.76.173] (port=45673 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JvWlo-0005kq-2X for qemu-devel@nongnu.org; Mon, 12 May 2008 08:04:44 -0400 Received: from savannah.gnu.org ([199.232.41.3]:39512 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JvWln-00049H-Hg for qemu-devel@nongnu.org; Mon, 12 May 2008 08:04:43 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1JvWll-0007UC-U2 for qemu-devel@nongnu.org; Mon, 12 May 2008 12:04:42 +0000 Received: from bellard by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1JvWll-0007U7-7j for qemu-devel@nongnu.org; Mon, 12 May 2008 12:04:41 +0000 MIME-Version: 1.0 Errors-To: bellard Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Fabrice Bellard Message-Id: Date: Mon, 12 May 2008 12:04:41 +0000 Subject: [Qemu-devel] [4435] the double/triple fault handling was not tested in user mode. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 4435 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4435 Author: bellard Date: 2008-05-12 12:04:40 +0000 (Mon, 12 May 2008) Log Message: ----------- the double/triple fault handling was not tested in user mode. Modified Paths: -------------- trunk/cpu-exec.c Modified: trunk/cpu-exec.c =================================================================== --- trunk/cpu-exec.c 2008-05-12 12:00:46 UTC (rev 4434) +++ trunk/cpu-exec.c 2008-05-12 12:04:40 UTC (rev 4435) @@ -354,6 +354,8 @@ env->exception_is_int, env->error_code, env->exception_next_eip); + /* successfully delivered */ + env->old_exception = -1; #endif ret = env->exception_index; break;