mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
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>
This commit is contained in:
parent
b2a3ebb72c
commit
376bc151c7
1 changed files with 3 additions and 3 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue