From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41053) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXCox-0003Wj-5V for qemu-devel@nongnu.org; Wed, 23 May 2012 10:45:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXCop-0007YS-MO for qemu-devel@nongnu.org; Wed, 23 May 2012 10:45:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50761) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXCop-0007Y4-7m for qemu-devel@nongnu.org; Wed, 23 May 2012 10:45:43 -0400 Date: Wed, 23 May 2012 17:45:33 +0300 From: "Michael S. Tsirkin" Message-ID: <20120523144532.GA30289@redhat.com> References: <20120523135206.GA14654@chinaltcdragon.cn.ibm.com> <20120523141202.GC29930@redhat.com> <4FBCF46E.3020509@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4FBCF46E.3020509@redhat.com> Subject: Re: [Qemu-devel] [PATCH] Support virtio-scsi-pci adapter hot-plug List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: Stefan Hajnoczi , Brian Zhao , Kelvin Wang , Amos Kong , qemu-devel On Wed, May 23, 2012 at 04:30:06PM +0200, Paolo Bonzini wrote: > Il 23/05/2012 16:12, Michael S. Tsirkin ha scritto: > >> > 2, Run qemu with the option -monitor. > >> > > >> > 3, In the guest, insert necessary modules: > >> > for m in acpiphp pci_hotplug; do sudo modprobe ${m}; done > >> > > >> > 4, In the qemu monitor,hot add a virtio-scsi-pci adapter: > >> > (qemu)pci_add auto storage if=virtio-scsi-pci > >> > > >> > 5, Check whether the controller was added: > >> > Guest: lspci > >> > Qemu: (qemu)info qtree > >> > > >> > Signed-off-by: Kelvin Wang > >> > Signed-off-by: Sheng Liu > > NAK > > > > Do not use pci_add. It is a compatibility command. > > Use the new style device_add. > > Same for if=. > > > > I think you won't need any changes then? > > > > You don't. You need to rescan the bus manually in the guest, that's all. > > Paolo If the point is to avoid need for manual bus rescans that's good. But please do not touch the legacy commands. If anyone wants to use new devices, new commands drive_add and device_add should be used. Same for command line flags. -- MST