projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
67c31c9
)
migration/RDMA: It is accounting for zero/normal pages in two places
author
Juan Quintela
<quintela@redhat.com>
Mon, 15 May 2023 19:57:04 +0000
(21:57 +0200)
committer
Juan Quintela
<quintela@redhat.com>
Fri, 29 Sep 2023 16:11:21 +0000
(18:11 +0200)
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>
migration/ram.c
patch
|
blob
|
history
diff --git
a/migration/ram.c
b/migration/ram.c
index 9040d66e615eac75ce180a58c65a244e09f7ca22..f2c5b07919332deee059ebaf220261534fc164ba 100644
(file)
--- 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;
}