All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Juan Quintela <quintela@redhat.com>
Cc: qemu-devel@nongnu.org, lvivier@redhat.com, peterx@redhat.com
Subject: Re: [Qemu-devel] [PATCH v14 04/12] migration: Calculate transferred ram correctly
Date: Wed, 20 Jun 2018 10:58:19 +0100	[thread overview]
Message-ID: <20180620095818.GF2549@work-vm> (raw)
In-Reply-To: <20180620081524.5751-5-quintela@redhat.com>

* Juan Quintela (quintela@redhat.com) wrote:
> On multifd we send data from more places that main channel.
> 
> Signed-off-by: Juan Quintela <quintela@redhat.com>

Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

> --
> Add placeholder for packets size
> ---
>  migration/migration.c | 12 ++++++++++--
>  migration/ram.c       |  7 +++++++
>  migration/ram.h       |  1 +
>  3 files changed, 18 insertions(+), 2 deletions(-)
> 
> diff --git a/migration/migration.c b/migration/migration.c
> index e1eaa97df4..224629533b 100644
> --- a/migration/migration.c
> +++ b/migration/migration.c
> @@ -2728,12 +2728,20 @@ static void migration_update_counters(MigrationState *s,
>  {
>      uint64_t transferred, time_spent;
>      double bandwidth;
> +    uint64_t now;
>  
>      if (current_time < s->iteration_start_time + BUFFER_DELAY) {
>          return;
>      }
>  
> -    transferred = qemu_ftell(s->to_dst_file) - s->iteration_initial_bytes;
> +    if (migrate_use_multifd()) {
> +        now = ram_counters.normal * qemu_target_page_size()
> +            + multifd_packets_size()
> +            + qemu_ftell(s->to_dst_file);
> +    } else {
> +        now = qemu_ftell(s->to_dst_file);
> +    }
> +    transferred = now - s->iteration_initial_bytes;
>      time_spent = current_time - s->iteration_start_time;
>      bandwidth = (double)transferred / time_spent;
>      s->threshold_size = bandwidth * s->parameters.downtime_limit;
> @@ -2752,7 +2760,7 @@ static void migration_update_counters(MigrationState *s,
>      qemu_file_reset_rate_limit(s->to_dst_file);
>  
>      s->iteration_start_time = current_time;
> -    s->iteration_initial_bytes = qemu_ftell(s->to_dst_file);
> +    s->iteration_initial_bytes = now;
>  
>      trace_migrate_transferred(transferred, time_spent,
>                                bandwidth, s->threshold_size);
> diff --git a/migration/ram.c b/migration/ram.c
> index d146689d3a..d7f8b0d989 100644
> --- a/migration/ram.c
> +++ b/migration/ram.c
> @@ -952,6 +952,13 @@ int multifd_save_setup(void)
>      return 0;
>  }
>  
> +/* Size in bytes of the page headers */
> +int multifd_packets_size(void)
> +{
> +    /* We are not yet sending any data through channels */
> +    return 0;
> +}
> +
>  struct {
>      MultiFDRecvParams *params;
>      /* number of created threads */
> diff --git a/migration/ram.h b/migration/ram.h
> index d386f4d641..e1decb7418 100644
> --- a/migration/ram.h
> +++ b/migration/ram.h
> @@ -47,6 +47,7 @@ int multifd_load_setup(void);
>  int multifd_load_cleanup(Error **errp);
>  bool multifd_recv_all_channels_created(void);
>  void multifd_recv_new_channel(QIOChannel *ioc);
> +int multifd_packets_size(void);
>  
>  uint64_t ram_pagesize_summary(void);
>  int ram_save_queue_pages(const char *rbname, ram_addr_t start, ram_addr_t len);
> -- 
> 2.17.1
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

  reply	other threads:[~2018-06-20  9:58 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-20  8:15 [Qemu-devel] [PATCH v14 00/12] Multifd Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 01/12] migration: Create multipage support Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 02/12] migration: Create multifd packet Juan Quintela
2018-06-20  9:40   ` Dr. David Alan Gilbert
2018-06-20  9:43     ` Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 03/12] migration: Add multifd traces for start/end thread Juan Quintela
2018-06-20  9:51   ` Dr. David Alan Gilbert
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 04/12] migration: Calculate transferred ram correctly Juan Quintela
2018-06-20  9:58   ` Dr. David Alan Gilbert [this message]
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 05/12] migration: Multifd channels always wait on the sem Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 06/12] migration: Add block where to send/receive packets Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 07/12] migration: Synchronize multifd threads with main thread Juan Quintela
2018-06-20 10:30   ` Dr. David Alan Gilbert
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 08/12] migration: Create ram_save_multifd_page Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 09/12] migration: Start sending messages Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 10/12] migration: Wait for blocking IO Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 11/12] migration: Remove not needed semaphore and quit Juan Quintela
2018-06-20  8:15 ` [Qemu-devel] [PATCH v14 12/12] migration: Stop sending whole pages through main channel Juan Quintela
2018-06-20 10:44 ` [Qemu-devel] [PATCH v14 00/12] Multifd no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180620095818.GF2549@work-vm \
    --to=dgilbert@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.