qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Umesh Deshpande <udeshpan@redhat.com>
To: kvm@vger.kernel.org, qemu-devel@nongnu.org
Cc: pbonzini@redhat.com, mtosatti@redhat.com,
	Umesh Deshpande <udeshpan@redhat.com>,
	Juan Quintela <quintela@redhat.com>
Subject: [Qemu-devel] [RFC PATCH v2 0/3] separate thread for VM migration
Date: Fri, 29 Jul 2011 16:57:23 -0400	[thread overview]
Message-ID: <cover.1311971937.git.udeshpan@redhat.com> (raw)

Following patch deals with VCPU and iothread starvation during the migration of
a guest. Currently the iothread is responsible for performing the guest
migration. It holds qemu_mutex during the migration and doesn't allow VCPU to
enter the qemu mode and delays its return to the guest. The guest migration,
executed as an iohandler also delays the execution of other iohandlers.
In the following patch series,

The migration has been moved to a separate thread to
reduce the qemu_mutex contention and iohandler starvation.

Also current dirty bitmap is split into per memslot bitmap to reduce its size.

Umesh Deshpande (3):
  separate thread for VM migration
  fine grained qemu_mutex locking for migration
  per memslot dirty bitmap

 arch_init.c     |   14 ++++++++++--
 buffered_file.c |   28 ++++++++++++++++---------
 buffered_file.h |    4 +++
 cpu-all.h       |   40 ++++++++++++++++++++++++++++++------
 exec.c          |   38 +++++++++++++++++++++-------------
 migration.c     |   60 ++++++++++++++++++++++++++++++++++++++++++++----------
 migration.h     |    3 ++
 savevm.c        |   22 +-------------------
 savevm.h        |   29 ++++++++++++++++++++++++++
 xen-all.c       |    6 +---
 10 files changed, 173 insertions(+), 71 deletions(-)
 create mode 100644 savevm.h

-- 
1.7.4.1

             reply	other threads:[~2011-07-29 20:57 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-29 20:57 Umesh Deshpande [this message]
2011-07-29 20:57 ` [Qemu-devel] [RFC PATCH v2 1/3] separate thread for VM migration Umesh Deshpande
2011-08-01  9:37   ` Paolo Bonzini
2011-08-01 21:00     ` Umesh Deshpande
2011-08-02  7:44       ` Paolo Bonzini
2011-07-29 20:57 ` [Qemu-devel] [RFC PATCH v2 2/3] fine grained qemu_mutex locking for migration Umesh Deshpande
2011-08-01  9:39   ` Paolo Bonzini
2011-08-02 16:30   ` Marcelo Tosatti
2011-07-29 20:57 ` [Qemu-devel] [RFC PATCH v2 3/3] Per memslot dirty bitmap Umesh Deshpande
2011-08-02 16:29   ` Marcelo Tosatti
2011-08-01  9:41 ` [Qemu-devel] [RFC PATCH v2 0/3] separate thread for VM migration shawn che

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=cover.1311971937.git.udeshpan@redhat.com \
    --to=udeshpan@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    --cc=pbonzini@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).