All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-arm] [PATCH for-3.1] target/arm: Fix typo in tlbi_aa64_vmalle1_write
@ 2018-11-10 12:17 ` Richard Henderson
  0 siblings, 0 replies; 8+ messages in thread
From: Richard Henderson @ 2018-11-10 12:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, qemu-arm

This would cause an infinite recursion or loop.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 target/arm/helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/arm/helper.c b/target/arm/helper.c
index 96301930cc..a327988c66 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -3155,7 +3155,7 @@ static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
     CPUState *cs = ENV_GET_CPU(env);
 
     if (tlb_force_broadcast(env)) {
-        tlbi_aa64_vmalle1_write(env, NULL, value);
+        tlbi_aa64_vmalle1is_write(env, NULL, value);
         return;
     }
 
-- 
2.17.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-11-12 11:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-10 12:17 [Qemu-arm] [PATCH for-3.1] target/arm: Fix typo in tlbi_aa64_vmalle1_write Richard Henderson
2018-11-10 12:17 ` [Qemu-devel] " Richard Henderson
2018-11-10 19:20 ` [Qemu-arm] " Philippe Mathieu-Daudé
2018-11-10 19:20   ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-11-12 11:13 ` Alex Bennée
2018-11-12 11:13   ` [Qemu-devel] " Alex Bennée
2018-11-12 11:27 ` Peter Maydell
2018-11-12 11:27   ` [Qemu-devel] " Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.