From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49113) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQGNg-0007Pn-0T for qemu-devel@nongnu.org; Thu, 11 Apr 2013 08:13:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQGNd-0004Av-9j for qemu-devel@nongnu.org; Thu, 11 Apr 2013 08:13:31 -0400 Received: from nodalink.pck.nerim.net ([62.212.105.220]:43048 helo=paradis.irqsave.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQGNd-0004Am-0Q for qemu-devel@nongnu.org; Thu, 11 Apr 2013 08:13:29 -0400 From: =?UTF-8?q?Beno=C3=AEt=20Canet?= Date: Thu, 11 Apr 2013 14:14:24 +0200 Message-Id: <1365682468-12301-1-git-send-email-benoit@irqsave.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 0/4] Virtio-9p live migration patchset List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Beno=C3=AEt=20Canet?= , aneesh.kumar@linux.vnet.ibm.com, quintela@redhat.com This patchset is a rework of the 9p live migration patchs made a few year= s ago by Aneesh. As the new vmstate API doesn't support linked list so the old API is used= . Beno=C3=AEt Canet (4): migration: Create the pre migration flush hook infrastructure. virtio-9p: Add support for 9p migration. virtio-9p: Wait for 9p operations to complete before migration. virtio-9p: Remove migration blockers. Makefile | 6 +- Makefile.objs | 2 +- block.c | 8 ++ cpus.c | 6 +- hw/9pfs/virtio-9p-device.c | 154 +++++++++++++++++++++++= ++++++ hw/9pfs/virtio-9p.c | 93 ++++++++++++----- hw/9pfs/virtio-9p.h | 4 +- include/migration/migration-flush-hooks.h | 30 ++++++ migration-flush-hooks.c | 62 ++++++++++++ vl.c | 6 ++ 10 files changed, 340 insertions(+), 31 deletions(-) create mode 100644 include/migration/migration-flush-hooks.h create mode 100644 migration-flush-hooks.c --=20 1.7.10.4