From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LnifP-0001Mf-Fe for qemu-devel@nongnu.org; Sat, 28 Mar 2009 20:14:23 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LnifN-0001Lt-Nb for qemu-devel@nongnu.org; Sat, 28 Mar 2009 20:14:23 -0400 Received: from [199.232.76.173] (port=58795 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LnifN-0001Ln-IE for qemu-devel@nongnu.org; Sat, 28 Mar 2009 20:14:21 -0400 Received: from savannah.gnu.org ([199.232.41.3]:56706 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 1LnifN-0005TO-Bz for qemu-devel@nongnu.org; Sat, 28 Mar 2009 20:14:21 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1LnifJ-0002g1-Sa for qemu-devel@nongnu.org; Sun, 29 Mar 2009 00:14:18 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1LnifJ-0002fw-9X for qemu-devel@nongnu.org; Sun, 29 Mar 2009 00:14:17 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Sun, 29 Mar 2009 00:14:17 +0000 Subject: [Qemu-devel] [6926] target-alpha: tb_flush helper should flush the tb (and not the tlb). 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: 6926 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6926 Author: aurel32 Date: 2009-03-29 00:14:16 +0000 (Sun, 29 Mar 2009) Log Message: ----------- target-alpha: tb_flush helper should flush the tb (and not the tlb). Looks to be a typo fix. Signed-off-by: Tristan Gingold Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/target-alpha/op_helper.c Modified: trunk/target-alpha/op_helper.c =================================================================== --- trunk/target-alpha/op_helper.c 2009-03-29 00:14:06 UTC (rev 6925) +++ trunk/target-alpha/op_helper.c 2009-03-29 00:14:16 UTC (rev 6926) @@ -25,7 +25,7 @@ void helper_tb_flush (void) { - tlb_flush(env, 1); + tb_flush(env); } /*****************************************************************************/