Skip to content

Commit

Permalink
migration/RDMA: It is accounting for zero/normal pages in two places
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Juan Quintela committed Sep 29, 2023
1 parent 67c31c9 commit 19df4f3
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions migration/ram.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 19df4f3

Please sign in to comment.