projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5005e25
)
cputlb: fix assert_cpu_is_self macro
author
Emilio G. Cota
<cota@braap.org>
Tue, 9 Oct 2018 17:45:55 +0000
(13:45 -0400)
committer
Richard Henderson
<richard.henderson@linaro.org>
Fri, 19 Oct 2018 01:58:10 +0000
(18:58 -0700)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Message-Id: <
20181009174557
.16125-5-cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
accel/tcg/cputlb.c
patch
|
blob
|
history
diff --git
a/accel/tcg/cputlb.c
b/accel/tcg/cputlb.c
index 502eea28509f2465b0c71da930ebd1543a908e5c..f6b388c961c9c8838ed9a2f642af0288d0c99138 100644
(file)
--- a/
accel/tcg/cputlb.c
+++ b/
accel/tcg/cputlb.c
@@
-58,9
+58,9
@@
} \
} while (0)
-#define assert_cpu_is_self(
this_cpu) do {
\
+#define assert_cpu_is_self(
cpu) do {
\
if (DEBUG_TLB_GATE) { \
- g_assert(!
cpu->created || qemu_cpu_is_self(cpu));
\
+ g_assert(!
(cpu)->created || qemu_cpu_is_self(cpu));
\
} \
} while (0)