From: Richard Henderson Date: Fri, 13 Oct 2017 18:22:57 +0000 (-0700) Subject: tcg: Include CF_COUNT_MASK in CF_HASH_MASK X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cdfef1715c779eb528d633e8b76cbc8a10e71ac8;p=qemu.git tcg: Include CF_COUNT_MASK in CF_HASH_MASK Reviewed-by: Emilio G. Cota Signed-off-by: Richard Henderson --- diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index 352abc7450..0fdb72bb22 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -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;