[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 11/16] migration/RDMA: It is accounting for zero/normal pa
From: |
Leonardo Brás |
Subject: |
Re: [PATCH v2 11/16] migration/RDMA: It is accounting for zero/normal pages in two places |
Date: |
Thu, 25 May 2023 04:06:19 -0300 |
User-agent: |
Evolution 3.48.1 |
On Mon, 2023-05-15 at 21:57 +0200, Juan Quintela wrote:
> Remove the one in control_save_page().
>
> Signed-off-by: Juan Quintela <quintela@redhat.com>
> ---
> migration/ram.c | 7 -------
> 1 file changed, 7 deletions(-)
>
> diff --git a/migration/ram.c b/migration/ram.c
> index a706edecc0..67ed49b387 100644
> --- a/migration/ram.c
> +++ b/migration/ram.c
> @@ -1191,13 +1191,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;
> }
>
ram_save_target_page_legacy() calls both control_save_page() and
save_zero_page() which increment zero-pages.
It also calls ram_save_page() which increments normal-pages.
Reviewed-by: Leonardo Bras <leobras@redhat.com>
- Re: [PATCH v2 08/16] migration: Use migration_transferred_bytes() to calculate rate_limit, (continued)
[PATCH v2 09/16] migration: We don't need the field rate_limit_used anymore, Juan Quintela, 2023/05/15
[PATCH v2 10/16] migration: Don't abuse qemu_file transferred for RDMA, Juan Quintela, 2023/05/15
[PATCH v2 11/16] migration/RDMA: It is accounting for zero/normal pages in two places, Juan Quintela, 2023/05/15
- Re: [PATCH v2 11/16] migration/RDMA: It is accounting for zero/normal pages in two places,
Leonardo Brás <=
[PATCH v2 13/16] migration/rdma: Don't use imaginary transfers, Juan Quintela, 2023/05/15
[PATCH v2 12/16] migration/rdma: Remove QEMUFile parameter when not used, Juan Quintela, 2023/05/15
[PATCH v2 14/16] migration: Remove unused qemu_file_credit_transfer(), Juan Quintela, 2023/05/15
[PATCH v2 15/16] migration/rdma: Simplify the function that saves a page, Juan Quintela, 2023/05/15