qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

include: move exec/tb-hash-xx.h to 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>

authored by

Emilio G. Cota and committed by
Richard Henderson
fe656e31 c971d8fa

+6 -6
+3 -3
include/exec/tb-hash-xx.h include/qemu/xxhash.h
··· 31 31 * - xxHash source repository : https://github.com/Cyan4973/xxHash 32 32 */ 33 33 34 - #ifndef EXEC_TB_HASH_XX_H 35 - #define EXEC_TB_HASH_XX_H 34 + #ifndef QEMU_XXHASH_H 35 + #define QEMU_XXHASH_H 36 36 37 37 #include "qemu/bitops.h" 38 38 ··· 119 119 return qemu_xxhash7(ab, cd, e, f, 0); 120 120 } 121 121 122 - #endif /* EXEC_TB_HASH_XX_H */ 122 + #endif /* QEMU_XXHASH_H */
+1 -1
include/exec/tb-hash.h
··· 20 20 #ifndef EXEC_TB_HASH_H 21 21 #define EXEC_TB_HASH_H 22 22 23 - #include "exec/tb-hash-xx.h" 23 + #include "qemu/xxhash.h" 24 24 25 25 #ifdef CONFIG_SOFTMMU 26 26
+1 -1
tests/qht-bench.c
··· 9 9 #include "qemu/atomic.h" 10 10 #include "qemu/qht.h" 11 11 #include "qemu/rcu.h" 12 - #include "exec/tb-hash-xx.h" 12 + #include "qemu/xxhash.h" 13 13 14 14 struct thread_stats { 15 15 size_t rd;
+1 -1
util/qsp.c
··· 61 61 #include "qemu/timer.h" 62 62 #include "qemu/qht.h" 63 63 #include "qemu/rcu.h" 64 - #include "exec/tb-hash-xx.h" 64 + #include "qemu/xxhash.h" 65 65 66 66 enum QSPType { 67 67 QSP_MUTEX,