From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37836) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRfU8-0005lF-JT for qemu-devel@nongnu.org; Wed, 10 Sep 2014 06:50:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XRfU2-0000RB-Dv for qemu-devel@nongnu.org; Wed, 10 Sep 2014 06:50:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRfU2-0000R5-5m for qemu-devel@nongnu.org; Wed, 10 Sep 2014 06:50:42 -0400 Message-ID: <54102CFB.4030304@redhat.com> Date: Wed, 10 Sep 2014 12:50:35 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1410265809-27247-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1410265809-27247-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 00/10] x86: migrate more data List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: amit.shah@redhat.com, dgilbert@redhat.com, Pavel.Dovgaluk@ispras.ru, quintela@redhat.com Il 09/09/2014 14:29, Paolo Bonzini ha scritto: > Juan, David, Amit, here are Pavel's fixes for x86 migration. > Please help applying them, or ack them so that I can merge > them through the KVM tree. > > Thanks, > > Paolo > > Paolo Bonzini (1): > vl: use QLIST_FOREACH_SAFE to visit change state handlers > > Pavel Dovgalyuk (9): > apic_common: vapic_paddr synchronization fix > cpu: init vmstate for ticks and clock offset > pcspk: adding vmstate for save/restore > fdc: adding vmstate for save/restore > parallel: adding vmstate for save/restore > serial: fixing vmstate for save/restore > pckbd: adding new fields to vmstate > piix: do not raise irq while loading vmstate > mc146818rtc: add missed field to vmstate > > cpus.c | 8 +- > hw/audio/pcspk.c | 16 ++- > hw/block/fdc.c | 74 ++++++++++++++ > hw/char/parallel.c | 18 ++++ > hw/char/serial.c | 265 ++++++++++++++++++++++++++++++++++++++++--------- > hw/i386/kvmvapic.c | 37 +++++-- > hw/input/pckbd.c | 51 ++++++++++ > hw/pci-host/piix.c | 26 ++++- > hw/timer/mc146818rtc.c | 25 +++++ > include/qemu-common.h | 2 + > vl.c | 5 +- > 12 files changed, 463 insertions(+), 64 deletions(-) > I've applied all patches except 4 to the uq/master branch. Patch 4 deserves more discussion to see what to do about older machine types (spoiler: my idea is "nothing" :)). Paolo