]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg: Include CF_COUNT_MASK in CF_HASH_MASK
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 13 Oct 2017 18:22:57 +0000 (11:22 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Tue, 24 Oct 2017 20:53:41 +0000 (13:53 -0700)
Reviewed-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
include/exec/exec-all.h

index 352abc74506e8c14e440c6f8a3730705750509f1..0fdb72bb220e209b1ba085de4faefaab2840ca18 100644 (file)
@@ -327,7 +327,7 @@ struct TranslationBlock {
 #define CF_INVALID     0x80000 /* TB is stale. Setters must acquire tb_lock */
 #define CF_PARALLEL    0x100000 /* Generate code for a parallel context */
 /* cflags' mask for hashing/comparison */
-#define CF_HASH_MASK (CF_PARALLEL)
+#define CF_HASH_MASK   (CF_COUNT_MASK | CF_PARALLEL)
 
     /* Per-vCPU dynamic tracing state used to generate this TB */
     uint32_t trace_vcpu_dstate;