From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59108) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrsCB-0007Le-Jg for qemu-devel@nongnu.org; Mon, 11 May 2015 14:12:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YrsCA-0006zE-KN for qemu-devel@nongnu.org; Mon, 11 May 2015 14:12:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48021) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrsCA-0006yw-Dc for qemu-devel@nongnu.org; Mon, 11 May 2015 14:12:50 -0400 From: John Snow Date: Mon, 11 May 2015 14:12:33 -0400 Message-Id: <1431367963-24437-5-git-send-email-jsnow@redhat.com> In-Reply-To: <1431367963-24437-1-git-send-email-jsnow@redhat.com> References: <1431367963-24437-1-git-send-email-jsnow@redhat.com> Subject: [Qemu-devel] [PULL 04/14] ich9/ahci: Enable Migration List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, jsnow@redhat.com Lift the flag preventing the migration of the ICH9/AHCI devices. Signed-off-by: John Snow Reviewed-by: Kevin Wolf Message-id: 1430417242-11859-5-git-send-email-jsnow@redhat.com --- hw/ide/ahci.c | 1 - hw/ide/ich.c | 1 - 2 files changed, 2 deletions(-) diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c index 833fd45..8e36dec 100644 --- a/hw/ide/ahci.c +++ b/hw/ide/ahci.c @@ -1461,7 +1461,6 @@ typedef struct SysbusAHCIState { static const VMStateDescription vmstate_sysbus_ahci = { .name = "sysbus-ahci", - .unmigratable = 1, /* Still buggy under I/O load */ .fields = (VMStateField[]) { VMSTATE_AHCI(ahci, SysbusAHCIState), VMSTATE_END_OF_LIST() diff --git a/hw/ide/ich.c b/hw/ide/ich.c index b1d8874..350c7f1 100644 --- a/hw/ide/ich.c +++ b/hw/ide/ich.c @@ -82,7 +82,6 @@ static const VMStateDescription vmstate_ich9_ahci = { .name = "ich9_ahci", - .unmigratable = 1, /* Still buggy under I/O load */ .version_id = 1, .fields = (VMStateField[]) { VMSTATE_PCI_DEVICE(parent_obj, AHCIPCIState), -- 2.1.0