Skip to content
Snippets Groups Projects
Commit 19df4f32 authored by Juan Quintela's avatar Juan Quintela
Browse files

migration/RDMA: It is accounting for zero/normal pages in two places


Remove the one in control_save_page().

Reviewed-by: default avatarLeonardo Bras <leobras@redhat.com>
Signed-off-by: default avatarJuan Quintela <quintela@redhat.com>
Message-Id: <20230515195709.63843-12-quintela@redhat.com>
parent 67c31c9c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment