All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Li, Liang Z" <liang.z.li@intel.com>
To: "mst@redhat.com" <mst@redhat.com>
Cc: "virtio-dev@lists.oasis-open.org"
	<virtio-dev@lists.oasis-open.org>,
	"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
	"dgilbert@redhat.com" <dgilbert@redhat.com>,
	"virtualization@lists.linux-foundation.org"
	<virtualization@lists.linux-foundation.org>
Subject: RE: [PATCH v2 kernel 0/7] Extend virtio-balloon for fast (de)inflating & fast live migration
Date: Thu, 21 Jul 2016 08:14:09 +0000	[thread overview]
Message-ID: <F2CBF3009FA73547804AE4C663CAB28E0420D5A1__5234.02318726784$1469088867$gmane$org@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1467196340-22079-1-git-send-email-liang.z.li@intel.com>

Hi Michael,

If you have time, could you help to review this patch set?

Thanks!
Liang


> -----Original Message-----
> From: Li, Liang Z
> Sent: Wednesday, June 29, 2016 6:32 PM
> To: mst@redhat.com
> Cc: linux-kernel@vger.kernel.org; virtualization@lists.linux-foundation.org;
> kvm@vger.kernel.org; qemu-devel@nongnu.org; virtio-dev@lists.oasis-
> open.org; dgilbert@redhat.com; quintela@redhat.com; Li, Liang Z
> Subject: [PATCH v2 kernel 0/7] Extend virtio-balloon for fast (de)inflating &
> fast live migration
> 
> This patch set contains two parts of changes to the virtio-balloon.
> 
> One is the change for speeding up the inflating & deflating process, the main
> idea of this optimization is to use bitmap to send the page information to
> host instead of the PFNs, to reduce the overhead of virtio data transmission,
> address translation and madvise(). This can help to improve the performance
> by about 85%.
> 
> Another change is for speeding up live migration. By skipping process guest's
> free pages in the first round of data copy, to reduce needless data processing,
> this can help to save quite a lot of CPU cycles and network bandwidth. We
> put guest's free page information in bitmap and send it to host with the virt
> queue of virtio-balloon. For an idle 8GB guest, this can help to shorten the
> total live migration time from 2Sec to about 500ms in the 10Gbps network
> environment.
> 
> 
> Changes from v1 to v2:
>     * Abandon the patch for dropping page cache.
>     * Put some structures to uapi head file.
>     * Use a new way to determine the page bitmap size.
>     * Use a unified way to send the free page information with the bitmap
>     * Address the issues referred in MST's comments
> 
> Liang Li (7):
>   virtio-balloon: rework deflate to add page to a list
>   virtio-balloon: define new feature bit and page bitmap head
>   mm: add a function to get the max pfn
>   virtio-balloon: speed up inflate/deflate process
>   virtio-balloon: define feature bit and head for misc virt queue
>   mm: add the related functions to get free page info
>   virtio-balloon: tell host vm's free page info
> 
>  drivers/virtio/virtio_balloon.c     | 306
> +++++++++++++++++++++++++++++++-----
>  include/uapi/linux/virtio_balloon.h |  41 +++++
>  mm/page_alloc.c                     |  52 ++++++
>  3 files changed, 359 insertions(+), 40 deletions(-)
> 
> --
> 1.8.3.1

  parent reply	other threads:[~2016-07-21  8:14 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-29 10:32 [PATCH v2 kernel 0/7] Extend virtio-balloon for fast (de)inflating & fast live migration Liang Li
2016-06-29 10:32 ` [Qemu-devel] " Liang Li
2016-06-29 10:32 ` Liang Li
2016-06-29 10:32 ` [PATCH v2 kernel 1/7] virtio-balloon: rework deflate to add page to a list Liang Li
2016-06-29 10:32   ` [Qemu-devel] " Liang Li
2016-06-29 10:32   ` Liang Li
2016-06-29 10:32 ` [PATCH v2 kernel 2/7] virtio-balloon: define new feature bit and page bitmap head Liang Li
2016-06-29 10:32 ` Liang Li
2016-06-29 10:32   ` [Qemu-devel] " Liang Li
2016-06-29 10:32 ` [PATCH v2 kernel 3/7] mm: add a function to get the max pfn Liang Li
2016-06-29 10:32 ` Liang Li
2016-06-29 10:32   ` [Qemu-devel] " Liang Li
2016-06-29 10:32 ` [PATCH v2 kernel 4/7] virtio-balloon: speed up inflate/deflate process Liang Li
2016-06-29 10:32 ` Liang Li
2016-06-29 10:32   ` [Qemu-devel] " Liang Li
2016-06-29 10:32 ` [PATCH v2 kernel 5/7] virtio-balloon: define feature bit and head for misc virt queue Liang Li
2016-06-29 10:32   ` [Qemu-devel] " Liang Li
2016-06-29 10:32 ` Liang Li
2016-06-29 10:32 ` [PATCH v2 kernel 6/7] mm: add the related functions to get free page info Liang Li
2016-06-29 10:32   ` [Qemu-devel] " Liang Li
2016-06-29 10:32 ` Liang Li
2016-06-29 10:32 ` [PATCH v2 kernel 7/7] virtio-balloon: tell host vm's " Liang Li
2016-06-29 10:32 ` Liang Li
2016-06-29 10:32   ` [Qemu-devel] " Liang Li
2016-07-06  0:43 ` [PATCH v2 kernel 0/7] Extend virtio-balloon for fast (de)inflating & fast live migration Li, Liang Z
2016-07-06  0:43 ` Li, Liang Z
2016-07-06  0:43   ` [Qemu-devel] " Li, Liang Z
2016-07-06  0:43   ` Li, Liang Z
2016-07-21  8:14 ` Li, Liang Z [this message]
2016-07-21  8:14 ` Li, Liang Z
2016-07-21  8:14   ` [Qemu-devel] " Li, Liang Z
2016-07-21  8:14   ` Li, Liang Z
2016-07-26 18:55 ` Michael S. Tsirkin
2016-07-26 18:55   ` [Qemu-devel] " Michael S. Tsirkin
2016-07-26 18:55   ` Michael S. Tsirkin
2016-07-27  1:32   ` [virtio-dev] " Li, Liang Z
2016-07-27  1:32   ` Li, Liang Z
2016-07-27  1:32     ` [Qemu-devel] " Li, Liang Z
2016-07-27  1:32     ` Li, Liang Z
2016-07-27  1:32     ` Li, Liang Z
2016-07-26 18:55 ` Michael S. Tsirkin

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='F2CBF3009FA73547804AE4C663CAB28E0420D5A1__5234.02318726784$1469088867$gmane$org@shsmsx102.ccr.corp.intel.com' \
    --to=liang.z.li@intel.com \
    --cc=dgilbert@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=virtio-dev@lists.oasis-open.org \
    --cc=virtualization@lists.linux-foundation.org \
    /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.