[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 4/5] migration: Teach dirtyrate about qemu_target_page_bits()
|
From: |
Juan Quintela |
|
Subject: |
[PATCH v2 4/5] migration: Teach dirtyrate about qemu_target_page_bits() |
|
Date: |
Thu, 11 May 2023 16:12:07 +0200 |
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
migration/dirtyrate.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/migration/dirtyrate.c b/migration/dirtyrate.c
index 6706e3fe66..2fd089e24a 100644
--- a/migration/dirtyrate.c
+++ b/migration/dirtyrate.c
@@ -372,7 +372,7 @@ static void get_ramblock_dirty_info(RAMBlock *block,
sample_pages_per_gigabytes) >> 30;
/* Right shift TARGET_PAGE_BITS to calc page count */
info->ramblock_pages = qemu_ram_get_used_length(block) >>
- TARGET_PAGE_BITS;
+ qemu_target_page_bits();
info->ramblock_addr = qemu_ram_get_host_addr(block);
strcpy(info->idstr, qemu_ram_get_idstr(block));
}
@@ -483,7 +483,7 @@ find_block_matched(RAMBlock *block, int count,
if (infos[i].ramblock_addr != qemu_ram_get_host_addr(block) ||
infos[i].ramblock_pages !=
- (qemu_ram_get_used_length(block) >> TARGET_PAGE_BITS)) {
+ (qemu_ram_get_used_length(block) >> qemu_target_page_bits())) {
trace_find_page_matched(block->idstr);
return NULL;
}
--
2.40.1
- [PATCH v2 0/5] migration: Make dirtyrate.c target independent, Juan Quintela, 2023/05/11
- [PATCH v2 1/5] softmmu: Create qemu_target_pages_to_MiB(), Juan Quintela, 2023/05/11
- [PATCH v2 4/5] migration: Teach dirtyrate about qemu_target_page_bits(),
Juan Quintela <=
- [PATCH v2 2/5] Use new created qemu_target_pages_to_MiB(), Juan Quintela, 2023/05/11
- [PATCH v2 5/5] migration: Make dirtyrate.c target independent, Juan Quintela, 2023/05/11
- [PATCH v2 3/5] migration: Teach dirtyrate about qemu_target_page_size(), Juan Quintela, 2023/05/11
- Re: [PATCH v2 0/5] migration: Make dirtyrate.c target independent, Richard Henderson, 2023/05/11