tcg: Include CF_COUNT_MASK in CF_HASH_MASK

Backports commit cdfef1715c779eb528d633e8b76cbc8a10e71ac8 from qemu
This commit is contained in:
Richard Henderson 2018-03-13 14:42:40 -04:00 committed by Lioncash
parent 5d360366e9
commit d6ca4d59dc
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -232,7 +232,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;