From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Wei Yang <richardw.yang@linux.intel.com>
Cc: qemu-devel@nongnu.org, quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2] migration/xbzrle: update cache and current_data in one place
Date: Mon, 10 Jun 2019 11:55:55 +0100 [thread overview]
Message-ID: <20190610105555.GD22439@work-vm> (raw)
In-Reply-To: <20190610004159.20966-1-richardw.yang@linux.intel.com>
* Wei Yang (richardw.yang@linux.intel.com) wrote:
> When we are not in the last_stage, we need to update the cache if page
> is not the same.
>
> Currently this procedure is scattered in two places and mixed with
> encoding status check.
>
> This patch extract this general step out to make the code a little bit
> easy to read.
>
> Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
> v2: give more comment on the behavior
> ---
> migration/ram.c | 25 +++++++++++++++----------
> 1 file changed, 15 insertions(+), 10 deletions(-)
>
> diff --git a/migration/ram.c b/migration/ram.c
> index e9b40d636d..17cc9b2b44 100644
> --- a/migration/ram.c
> +++ b/migration/ram.c
> @@ -1594,25 +1594,30 @@ static int save_xbzrle_page(RAMState *rs, uint8_t **current_data,
> encoded_len = xbzrle_encode_buffer(prev_cached_page, XBZRLE.current_buf,
> TARGET_PAGE_SIZE, XBZRLE.encoded_buf,
> TARGET_PAGE_SIZE);
> +
> + /*
> + * Update the cache contents, so that it corresponds to the data
> + * sent, in all cases except where we skip the page.
> + */
> + if (!last_stage && encoded_len != 0) {
> + memcpy(prev_cached_page, XBZRLE.current_buf, TARGET_PAGE_SIZE);
> + /*
> + * In the case where we couldn't compress, ensure that the caller
> + * sends the data from the cache, since the guest might have
> + * changed the RAM since we copied it.
> + */
> + *current_data = prev_cached_page;
> + }
> +
> if (encoded_len == 0) {
> trace_save_xbzrle_page_skipping();
> return 0;
> } else if (encoded_len == -1) {
> trace_save_xbzrle_page_overflow();
> xbzrle_counters.overflow++;
> - /* update data in the cache */
> - if (!last_stage) {
> - memcpy(prev_cached_page, *current_data, TARGET_PAGE_SIZE);
> - *current_data = prev_cached_page;
> - }
> return -1;
> }
>
> - /* we need to update the data in the cache, in order to get the same data */
> - if (!last_stage) {
> - memcpy(prev_cached_page, XBZRLE.current_buf, TARGET_PAGE_SIZE);
> - }
> -
> /* Send XBZRLE based compressed page */
> bytes_xbzrle = save_page_header(rs, rs->f, block,
> offset | RAM_SAVE_FLAG_XBZRLE);
> --
> 2.19.1
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2019-06-10 10:59 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-10 0:41 [Qemu-devel] [PATCH v2] migration/xbzrle: update cache and current_data in one place Wei Yang
2019-06-10 10:55 ` Dr. David Alan Gilbert [this message]
2019-06-12 10:15 ` Juan Quintela
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=20190610105555.GD22439@work-vm \
--to=dgilbert@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=richardw.yang@linux.intel.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.