diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2025-01-16 16:02:43 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2025-01-17 10:44:42 +0000 |
commit | 376bc151c7e0f535a783e72fc75dbbb07d0594b4 (patch) | |
tree | 9f741578bd2373ee40d222b8fea805eebf507347 | |
parent | b2a3ebb72c30e649cac9670ac81770a297271d0f (diff) | |
download | qemu-376bc151c7e0f535a783e72fc75dbbb07d0594b4.zip qemu-376bc151c7e0f535a783e72fc75dbbb07d0594b4.tar.gz qemu-376bc151c7e0f535a783e72fc75dbbb07d0594b4.tar.bz2 |
tests/tcg/plugins/mem: fix 32-bit build
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-Id: <20241217224306.2900490-5-pierrick.bouvier@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20250116160306.1709518-15-alex.bennee@linaro.org>
-rw-r--r-- | tests/tcg/plugins/mem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tcg/plugins/mem.c b/tests/tcg/plugins/mem.c index b0fa8a9..d87d662 100644 --- a/tests/tcg/plugins/mem.c +++ b/tests/tcg/plugins/mem.c @@ -135,14 +135,14 @@ static void update_region_info(uint64_t region, uint64_t offset, g_assert(offset + size <= region_size); g_mutex_lock(&lock); - ri = (RegionInfo *) g_hash_table_lookup(regions, GUINT_TO_POINTER(region)); + ri = (RegionInfo *) g_hash_table_lookup(regions, ®ion); if (!ri) { ri = g_new0(RegionInfo, 1); ri->region_address = region; ri->data = g_malloc0(region_size); ri->seen_all = true; - g_hash_table_insert(regions, GUINT_TO_POINTER(region), (gpointer) ri); + g_hash_table_insert(regions, &ri->region_address, ri); } if (is_store) { @@ -392,7 +392,7 @@ QEMU_PLUGIN_EXPORT int qemu_plugin_install(qemu_plugin_id_t id, if (do_region_summary) { region_mask = (region_size - 1); - regions = g_hash_table_new(NULL, g_direct_equal); + regions = g_hash_table_new(g_int64_hash, g_int64_equal); } counts = qemu_plugin_scoreboard_new(sizeof(CPUCount)); |