From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=54995 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PJ2Ew-0007Fn-6E for qemu-devel@nongnu.org; Thu, 18 Nov 2010 06:01:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PJ2Ev-0002M4-9A for qemu-devel@nongnu.org; Thu, 18 Nov 2010 06:01:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:64873) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PJ2Ev-0002J0-2K for qemu-devel@nongnu.org; Thu, 18 Nov 2010 06:01:17 -0500 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.13.8/8.13.8) with ESMTP id oAIB1FR9025526 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 18 Nov 2010 06:01:15 -0500 Date: Thu, 18 Nov 2010 13:01:13 +0200 From: Gleb Natapov Subject: Re: [Qemu-devel] [PATCH 0/3] add hotplug opt-out option for devices. Message-ID: <20101118110113.GE7948@redhat.com> References: <1290077118-11577-1-git-send-email-kraxel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1290077118-11577-1-git-send-email-kraxel@redhat.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: qemu-devel@nongnu.org On Thu, Nov 18, 2010 at 11:45:15AM +0100, Gerd Hoffmann wrote: > Hi, > > This patch series adds a qdev flag which allows devices being tagged as > not hotpluggable. It also sets this flag for a number of devices. > Do we want to be able to mark device as not hot-unpluggable from command like too? Something like this -device blabla,notunplug=no. > Gerd Hoffmann (3): > qdev: allow devices being tagged as not hotpluggable. > piix: tag as non-hotpluggable. > vga: tag as not hotplugable. > > hw/acpi_piix4.c | 2 ++ > hw/cirrus_vga.c | 1 + > hw/ide/piix.c | 2 ++ > hw/piix4.c | 1 + > hw/piix_pci.c | 2 ++ > hw/qdev.c | 16 +++++++++++++--- > hw/qdev.h | 1 + > hw/vga-pci.c | 1 + > hw/vmware_vga.c | 1 + > qerror.c | 4 ++++ > qerror.h | 3 +++ > 11 files changed, 31 insertions(+), 3 deletions(-) > -- Gleb.