diff mbox series

[RFC,05/48] include: move exec/tb-hash-xx.h to qemu/xxhash.h

Message ID 20181025172057.20414-6-cota@braap.org
State New
Headers show
Series Plugin support | expand

Commit Message

Emilio Cota Oct. 25, 2018, 5:20 p.m. UTC
Signed-off-by: Emilio G. Cota <cota@braap.org>
---
 include/exec/tb-hash.h                       | 2 +-
 include/{exec/tb-hash-xx.h => qemu/xxhash.h} | 6 +++---
 tests/qht-bench.c                            | 2 +-
 util/qsp.c                                   | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)
 rename include/{exec/tb-hash-xx.h => qemu/xxhash.h} (97%)

Comments

Alex Bennée Nov. 14, 2018, 1:05 p.m. UTC | #1
Emilio G. Cota <cota@braap.org> writes:

> Signed-off-by: Emilio G. Cota <cota@braap.org>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

> ---
>  include/exec/tb-hash.h                       | 2 +-
>  include/{exec/tb-hash-xx.h => qemu/xxhash.h} | 6 +++---
>  tests/qht-bench.c                            | 2 +-
>  util/qsp.c                                   | 2 +-
>  4 files changed, 6 insertions(+), 6 deletions(-)
>  rename include/{exec/tb-hash-xx.h => qemu/xxhash.h} (97%)
>
> diff --git a/include/exec/tb-hash.h b/include/exec/tb-hash.h
> index 731ba4c272..4f3a37d927 100644
> --- a/include/exec/tb-hash.h
> +++ b/include/exec/tb-hash.h
> @@ -20,7 +20,7 @@
>  #ifndef EXEC_TB_HASH_H
>  #define EXEC_TB_HASH_H
>
> -#include "exec/tb-hash-xx.h"
> +#include "qemu/xxhash.h"
>
>  #ifdef CONFIG_SOFTMMU
>
> diff --git a/include/exec/tb-hash-xx.h b/include/qemu/xxhash.h
> similarity index 97%
> rename from include/exec/tb-hash-xx.h
> rename to include/qemu/xxhash.h
> index 98ce4b628a..fe35dde328 100644
> --- a/include/exec/tb-hash-xx.h
> +++ b/include/qemu/xxhash.h
> @@ -31,8 +31,8 @@
>   * - xxHash source repository : https://github.com/Cyan4973/xxHash
>   */
>
> -#ifndef EXEC_TB_HASH_XX_H
> -#define EXEC_TB_HASH_XX_H
> +#ifndef QEMU_XXHASH_H
> +#define QEMU_XXHASH_H
>
>  #include "qemu/bitops.h"
>
> @@ -119,4 +119,4 @@ static inline uint32_t qemu_xxhash6(uint64_t ab, uint64_t cd, uint32_t e,
>      return qemu_xxhash7(ab, cd, e, f, 0);
>  }
>
> -#endif /* EXEC_TB_HASH_XX_H */
> +#endif /* QEMU_XXHASH_H */
> diff --git a/tests/qht-bench.c b/tests/qht-bench.c
> index 2ea132fe57..4d885ca303 100644
> --- a/tests/qht-bench.c
> +++ b/tests/qht-bench.c
> @@ -9,7 +9,7 @@
>  #include "qemu/atomic.h"
>  #include "qemu/qht.h"
>  #include "qemu/rcu.h"
> -#include "exec/tb-hash-xx.h"
> +#include "qemu/xxhash.h"
>
>  struct thread_stats {
>      size_t rd;
> diff --git a/util/qsp.c b/util/qsp.c
> index dc29c41fde..410f1ba004 100644
> --- a/util/qsp.c
> +++ b/util/qsp.c
> @@ -61,7 +61,7 @@
>  #include "qemu/timer.h"
>  #include "qemu/qht.h"
>  #include "qemu/rcu.h"
> -#include "exec/tb-hash-xx.h"
> +#include "qemu/xxhash.h"
>
>  enum QSPType {
>      QSP_MUTEX,


--
Alex Bennée
diff mbox series

Patch

diff --git a/include/exec/tb-hash.h b/include/exec/tb-hash.h
index 731ba4c272..4f3a37d927 100644
--- a/include/exec/tb-hash.h
+++ b/include/exec/tb-hash.h
@@ -20,7 +20,7 @@ 
 #ifndef EXEC_TB_HASH_H
 #define EXEC_TB_HASH_H
 
-#include "exec/tb-hash-xx.h"
+#include "qemu/xxhash.h"
 
 #ifdef CONFIG_SOFTMMU
 
diff --git a/include/exec/tb-hash-xx.h b/include/qemu/xxhash.h
similarity index 97%
rename from include/exec/tb-hash-xx.h
rename to include/qemu/xxhash.h
index 98ce4b628a..fe35dde328 100644
--- a/include/exec/tb-hash-xx.h
+++ b/include/qemu/xxhash.h
@@ -31,8 +31,8 @@ 
  * - xxHash source repository : https://github.com/Cyan4973/xxHash
  */
 
-#ifndef EXEC_TB_HASH_XX_H
-#define EXEC_TB_HASH_XX_H
+#ifndef QEMU_XXHASH_H
+#define QEMU_XXHASH_H
 
 #include "qemu/bitops.h"
 
@@ -119,4 +119,4 @@  static inline uint32_t qemu_xxhash6(uint64_t ab, uint64_t cd, uint32_t e,
     return qemu_xxhash7(ab, cd, e, f, 0);
 }
 
-#endif /* EXEC_TB_HASH_XX_H */
+#endif /* QEMU_XXHASH_H */
diff --git a/tests/qht-bench.c b/tests/qht-bench.c
index 2ea132fe57..4d885ca303 100644
--- a/tests/qht-bench.c
+++ b/tests/qht-bench.c
@@ -9,7 +9,7 @@ 
 #include "qemu/atomic.h"
 #include "qemu/qht.h"
 #include "qemu/rcu.h"
-#include "exec/tb-hash-xx.h"
+#include "qemu/xxhash.h"
 
 struct thread_stats {
     size_t rd;
diff --git a/util/qsp.c b/util/qsp.c
index dc29c41fde..410f1ba004 100644
--- a/util/qsp.c
+++ b/util/qsp.c
@@ -61,7 +61,7 @@ 
 #include "qemu/timer.h"
 #include "qemu/qht.h"
 #include "qemu/rcu.h"
-#include "exec/tb-hash-xx.h"
+#include "qemu/xxhash.h"
 
 enum QSPType {
     QSP_MUTEX,