qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RFC PATCH 0/2] A separate thread for VM migration


From: Umesh Deshapnde
Subject: [Qemu-devel] [RFC PATCH 0/2] A separate thread for VM migration
Date: Fri, 22 Jul 2011 15:58:14 -0400

From: Umesh Deshpande <address@hidden>

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.

Umesh Deshpande (2):
  new clock for migration routine
  separate thread for VM migration

 arch_init.c      |   14 ++++++++++--
 buffered_file.c  |   12 ++++++----
 exec.c           |    4 +++
 migration-tcp.c  |   18 ++++++++--------
 migration-unix.c |    7 ++---
 migration.c      |   59 ++++++++++++++++++++++++++++++-----------------------
 migration.h      |    4 +-
 qemu-timer.c     |   29 ++++++++++++++++++++++++-
 qemu-timer.h     |    3 ++
 9 files changed, 99 insertions(+), 51 deletions(-)

-- 
1.7.4.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]