summaryrefslogtreecommitdiffstats
path: root/include/exec/tb-hash.h
diff options
context:
space:
mode:
authorEmilio G. Cota2018-10-21 00:46:28 +0200
committerRichard Henderson2018-12-17 04:04:44 +0100
commitc971d8fa73ff92996d751fa87d90f220cf3c8194 (patch)
tree2827236171c665c6a5e9b02f47800af49349c15c /include/exec/tb-hash.h
parentqht-bench: document -p flag (diff)
downloadqemu-c971d8fa73ff92996d751fa87d90f220cf3c8194.tar.gz
qemu-c971d8fa73ff92996d751fa87d90f220cf3c8194.tar.xz
qemu-c971d8fa73ff92996d751fa87d90f220cf3c8194.zip
exec: introduce qemu_xxhash{2,4,5,6,7}
Before moving them all to include/qemu/xxhash.h. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Emilio G. Cota <cota@braap.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/tb-hash.h')
-rw-r--r--include/exec/tb-hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/tb-hash.h b/include/exec/tb-hash.h
index 0526c4f678..731ba4c272 100644
--- a/include/exec/tb-hash.h
+++ b/include/exec/tb-hash.h
@@ -61,7 +61,7 @@ static inline
uint32_t tb_hash_func(tb_page_addr_t phys_pc, target_ulong pc, uint32_t flags,
uint32_t cf_mask, uint32_t trace_vcpu_dstate)
{
- return tb_hash_func7(phys_pc, pc, flags, cf_mask, trace_vcpu_dstate);
+ return qemu_xxhash7(phys_pc, pc, flags, cf_mask, trace_vcpu_dstate);
}
#endif