aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2023-05-15 21:57:04 +0200
committerJuan Quintela <quintela@redhat.com>2023-09-29 18:11:21 +0200
commit19df4f3226c0f3e80291a40aec3c9c459dadfdf4 (patch)
tree8150d3edc57157bfb7d2996952ea1f3441cdeb10
parent67c31c9c1af1bb8f7df8275cc8731629e2690f89 (diff)
downloadqemu-19df4f3226c0f3e80291a40aec3c9c459dadfdf4.zip
qemu-19df4f3226c0f3e80291a40aec3c9c459dadfdf4.tar.gz
qemu-19df4f3226c0f3e80291a40aec3c9c459dadfdf4.tar.bz2
migration/RDMA: It is accounting for zero/normal pages in two places
Remove the one in control_save_page(). Reviewed-by: Leonardo Bras <leobras@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Message-Id: <20230515195709.63843-12-quintela@redhat.com>
-rw-r--r--migration/ram.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/migration/ram.c b/migration/ram.c
index 9040d66..f2c5b07 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -1204,13 +1204,6 @@ static bool control_save_page(PageSearchStatus *pss, RAMBlock *block,
if (ret == RAM_SAVE_CONTROL_DELAYED) {
return true;
}
-
- if (bytes_xmit > 0) {
- stat64_add(&mig_stats.normal_pages, 1);
- } else if (bytes_xmit == 0) {
- stat64_add(&mig_stats.zero_pages, 1);
- }
-
return true;
}