From patchwork Wed Jul 20 10:09:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 105666 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 30B5CB6F68 for ; Wed, 20 Jul 2011 22:16:19 +1000 (EST) Received: from localhost ([::1]:50451 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjVhH-0004EW-BN for incoming@patchwork.ozlabs.org; Wed, 20 Jul 2011 08:16:15 -0400 Received: from eggs.gnu.org ([140.186.70.92]:42312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjTj3-00056D-4V for qemu-devel@nongnu.org; Wed, 20 Jul 2011 06:10:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QjTiy-0001xH-Lq for qemu-devel@nongnu.org; Wed, 20 Jul 2011 06:09:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56785) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjTiy-0001wn-7l for qemu-devel@nongnu.org; Wed, 20 Jul 2011 06:09:52 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p6KA9o0D009340 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 20 Jul 2011 06:09:50 -0400 Received: from rincewind.home.kraxel.org (vpn1-5-220.ams2.redhat.com [10.36.5.220]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p6KA9k7E025822; Wed, 20 Jul 2011 06:09:48 -0400 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 07E5A405B7; Wed, 20 Jul 2011 12:09:39 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Wed, 20 Jul 2011 12:09:30 +0200 Message-Id: <1311156579-9814-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PULL] non-migratable devices X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Hi, This patch series adds an easy way to tag devices as non-migratable and puts it into use for ahci, ehci and a number of usb devices. cheers, Gerd The following changes since commit 03ff09580ef6cbc4a893b6e3e6bbff33180ec70a: Merge remote-tracking branch 'agraf/xen-next' into staging (2011-07-19 08:04:35 -0500) are available in the git repository at: git://git.kraxel.org/qemu migration.1 Gerd Hoffmann (9): vmstate: add no_migrate flag to VMStateDescription vmstate: complain about devices without vmstate ahci doesn't support migration ehci doesn't support migration usb storage: first migration support bits. usb-wacom doesn't support migration usb-bt doesn't support migration usb-net doesn't support migration usb-serial doesn't support migration hw/hw.h | 3 +++ hw/ide/ich.c | 6 ++++++ hw/qdev.c | 7 ++++++- hw/usb-bt.c | 6 ++++++ hw/usb-ehci.c | 7 +++++++ hw/usb-msd.c | 12 ++++++++++++ hw/usb-net.c | 6 ++++++ hw/usb-serial.c | 7 +++++++ hw/usb-wacom.c | 6 ++++++ savevm.c | 1 + 10 files changed, 60 insertions(+), 1 deletions(-)