* [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device
@ 2014-05-19 15:03 Jun Li
2014-05-19 15:31 ` Andreas Färber
0 siblings, 1 reply; 6+ messages in thread
From: Jun Li @ 2014-05-19 15:03 UTC (permalink / raw)
To: qemu-devel
Cc: kwolf, famz, stefanha, mst, marcel.a, juli, aliguori, pbonzini,
Jun Li, afaerber
Add remove_boot_device_path() function to remove bootindex when hot-unplug
a device. This patch fixed virtio-blk/virtio-net/scsi-disk/scsi-generic device.
Signed-off-by: Jun Li <junmuzi@gmail.com>
---
This patch also fixed bug1086603, ref:
https://bugzilla.redhat.com/show_bug.cgi?id=1086603
This version of patch delete dev and suffix parameter from function remove_boot_device_path().
---
hw/block/virtio-blk.c | 1 +
hw/net/virtio-net.c | 1 +
hw/scsi/scsi-disk.c | 1 +
hw/scsi/scsi-generic.c | 1 +
include/sysemu/sysemu.h | 1 +
vl.c | 15 +++++++++++++++
6 files changed, 20 insertions(+)
diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
index 8a568e5..497eb40 100644
--- a/hw/block/virtio-blk.c
+++ b/hw/block/virtio-blk.c
@@ -752,6 +752,7 @@ static void virtio_blk_device_unrealize(DeviceState *dev, Error **errp)
unregister_savevm(dev, "virtio-blk", s);
blockdev_mark_auto_del(s->bs);
virtio_cleanup(vdev);
+ remove_boot_device_path(s->conf->bootindex);
}
static Property virtio_blk_properties[] = {
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index 940a7cf..6afb1ca 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -1645,6 +1645,7 @@ static void virtio_net_device_unrealize(DeviceState *dev, Error **errp)
g_free(n->vqs);
qemu_del_nic(n->nic);
virtio_cleanup(vdev);
+ remove_boot_device_path(n->nic_conf.bootindex);
}
static void virtio_net_instance_init(Object *obj)
diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
index 4bcef55..d33df2e 100644
--- a/hw/scsi/scsi-disk.c
+++ b/hw/scsi/scsi-disk.c
@@ -2156,6 +2156,7 @@ static void scsi_destroy(SCSIDevice *dev)
scsi_device_purge_requests(&s->qdev, SENSE_CODE(NO_SENSE));
blockdev_mark_auto_del(s->qdev.conf.bs);
+ remove_boot_device_path(s->qdev.conf.bootindex);
}
static void scsi_disk_resize_cb(void *opaque)
diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c
index 3733d2c..d387f3e 100644
--- a/hw/scsi/scsi-generic.c
+++ b/hw/scsi/scsi-generic.c
@@ -390,6 +390,7 @@ static void scsi_destroy(SCSIDevice *s)
{
scsi_device_purge_requests(s, SENSE_CODE(NO_SENSE));
blockdev_mark_auto_del(s->conf.bs);
+ remove_boot_device_path(s->conf.bootindex);
}
static int scsi_generic_initfn(SCSIDevice *s)
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
index ba5c7f8..2510e3b 100644
--- a/include/sysemu/sysemu.h
+++ b/include/sysemu/sysemu.h
@@ -193,6 +193,7 @@ void rtc_change_mon_event(struct tm *tm);
void add_boot_device_path(int32_t bootindex, DeviceState *dev,
const char *suffix);
+void remove_boot_device_path(int32_t bootindex);
char *get_boot_devices_list(size_t *size, bool ignore_suffixes);
DeviceState *get_boot_device(uint32_t position);
diff --git a/vl.c b/vl.c
index 709d8cd..f31d008 100644
--- a/vl.c
+++ b/vl.c
@@ -1189,6 +1189,21 @@ void add_boot_device_path(int32_t bootindex, DeviceState *dev,
QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
}
+void remove_boot_device_path(int32_t bootindex)
+{
+ FWBootEntry *node, *next_node;
+
+ if (bootindex == -1) {
+ return;
+ }
+
+ QTAILQ_FOREACH_SAFE(node, &fw_boot_order, link, next_node)
+ if (node->bootindex == bootindex) {
+ QTAILQ_REMOVE(&fw_boot_order, node, link);
+ return;
+ }
+}
+
DeviceState *get_boot_device(uint32_t position)
{
uint32_t counter = 0;
--
1.9.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device
2014-05-19 15:03 [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device Jun Li
@ 2014-05-19 15:31 ` Andreas Färber
2014-05-19 15:57 ` Michael S. Tsirkin
2014-05-21 7:50 ` Jun Li
0 siblings, 2 replies; 6+ messages in thread
From: Andreas Färber @ 2014-05-19 15:31 UTC (permalink / raw)
To: Jun Li, qemu-devel
Cc: kwolf, famz, stefanha, marcel.a, mst, juli, Gerd Hoffmann,
aliguori, pbonzini
Hi,
Am 19.05.2014 17:03, schrieb Jun Li:
> Add remove_boot_device_path() function to remove bootindex when hot-unplug
> a device. This patch fixed virtio-blk/virtio-net/scsi-disk/scsi-generic device.
>
> Signed-off-by: Jun Li <junmuzi@gmail.com>
> ---
> This patch also fixed bug1086603, ref:
> https://bugzilla.redhat.com/show_bug.cgi?id=1086603
>
> This version of patch delete dev and suffix parameter from function remove_boot_device_path().
> ---
> hw/block/virtio-blk.c | 1 +
> hw/net/virtio-net.c | 1 +
> hw/scsi/scsi-disk.c | 1 +
> hw/scsi/scsi-generic.c | 1 +
On v1 I believe I reminded you of spapr_llan. Your patch is adding a new
remove_*() function, but is using it only for roughly half of the
devices that currently call add_boot_device_path(). Why? I can
understand that ISA devices will not be hot-unpluggable, but all PCI and
USB devices are.
hw/block/fdc.c: add_boot_device_path(isa->bootindexA, dev, "/floppy@0");
hw/block/fdc.c: add_boot_device_path(isa->bootindexB, dev, "/floppy@1");
hw/block/virtio-blk.c: add_boot_device_path(s->conf->bootindex, dev,
"/disk@0,0");
hw/core/loader.c: add_boot_device_path(bootindex, NULL, devpath);
hw/i386/kvm/pci-assign.c: add_boot_device_path(dev->bootindex,
&pci_dev->qdev, NULL);
hw/ide/qdev.c: add_boot_device_path(dev->conf.bootindex, &dev->qdev,
hw/misc/vfio.c: add_boot_device_path(vdev->bootindex, &pdev->qdev, NULL);
hw/net/e1000.c: add_boot_device_path(d->conf.bootindex, dev,
"/ethernet-phy@0");
hw/net/eepro100.c: add_boot_device_path(s->conf.bootindex,
&pci_dev->qdev, "/ethernet-phy@0");
hw/net/ne2000.c: add_boot_device_path(s->c.bootindex, &pci_dev->qdev,
"/ethernet-phy@0");
hw/net/pcnet.c: add_boot_device_path(s->conf.bootindex, dev,
"/ethernet-phy@0");
hw/net/rtl8139.c: add_boot_device_path(s->conf.bootindex, d,
"/ethernet-phy@0");
hw/net/spapr_llan.c: add_boot_device_path(dev->nicconf.bootindex,
DEVICE(dev), "");
hw/net/virtio-net.c: add_boot_device_path(n->nic_conf.bootindex, dev,
"/ethernet-phy@0");
hw/net/vmxnet3.c: add_boot_device_path(s->conf.bootindex, dev,
"/ethernet-phy@0");
hw/scsi/scsi-disk.c: add_boot_device_path(s->qdev.conf.bootindex,
&dev->qdev, NULL);
hw/scsi/scsi-generic.c: add_boot_device_path(s->conf.bootindex,
&s->qdev, NULL);
hw/usb/dev-network.c: add_boot_device_path(s->conf.bootindex,
&dev->qdev, "/ethernet@0");
hw/usb/host-libusb.c: add_boot_device_path(s->bootindex, &udev->qdev,
NULL);
hw/usb/redirect.c: add_boot_device_path(dev->bootindex, &udev->qdev,
NULL);
> include/sysemu/sysemu.h | 1 +
> vl.c | 15 +++++++++++++++
> 6 files changed, 20 insertions(+)
>
> diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
> index 8a568e5..497eb40 100644
> --- a/hw/block/virtio-blk.c
> +++ b/hw/block/virtio-blk.c
> @@ -752,6 +752,7 @@ static void virtio_blk_device_unrealize(DeviceState *dev, Error **errp)
> unregister_savevm(dev, "virtio-blk", s);
> blockdev_mark_auto_del(s->bs);
> virtio_cleanup(vdev);
> + remove_boot_device_path(s->conf->bootindex);
> }
>
> static Property virtio_blk_properties[] = {
> diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
> index 940a7cf..6afb1ca 100644
> --- a/hw/net/virtio-net.c
> +++ b/hw/net/virtio-net.c
> @@ -1645,6 +1645,7 @@ static void virtio_net_device_unrealize(DeviceState *dev, Error **errp)
> g_free(n->vqs);
> qemu_del_nic(n->nic);
> virtio_cleanup(vdev);
> + remove_boot_device_path(n->nic_conf.bootindex);
> }
>
> static void virtio_net_instance_init(Object *obj)
> diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
> index 4bcef55..d33df2e 100644
> --- a/hw/scsi/scsi-disk.c
> +++ b/hw/scsi/scsi-disk.c
> @@ -2156,6 +2156,7 @@ static void scsi_destroy(SCSIDevice *dev)
>
> scsi_device_purge_requests(&s->qdev, SENSE_CODE(NO_SENSE));
> blockdev_mark_auto_del(s->qdev.conf.bs);
> + remove_boot_device_path(s->qdev.conf.bootindex);
Didn't I previously ask that you use dev->config.bootindex here?
Pointers to parent's struct shouldn't be accessed anywhere except
VMStateDescription.
> }
>
> static void scsi_disk_resize_cb(void *opaque)
> diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c
> index 3733d2c..d387f3e 100644
> --- a/hw/scsi/scsi-generic.c
> +++ b/hw/scsi/scsi-generic.c
> @@ -390,6 +390,7 @@ static void scsi_destroy(SCSIDevice *s)
> {
> scsi_device_purge_requests(s, SENSE_CODE(NO_SENSE));
> blockdev_mark_auto_del(s->conf.bs);
> + remove_boot_device_path(s->conf.bootindex);
> }
>
> static int scsi_generic_initfn(SCSIDevice *s)
> diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
> index ba5c7f8..2510e3b 100644
> --- a/include/sysemu/sysemu.h
> +++ b/include/sysemu/sysemu.h
> @@ -193,6 +193,7 @@ void rtc_change_mon_event(struct tm *tm);
>
> void add_boot_device_path(int32_t bootindex, DeviceState *dev,
> const char *suffix);
> +void remove_boot_device_path(int32_t bootindex);
> char *get_boot_devices_list(size_t *size, bool ignore_suffixes);
>
> DeviceState *get_boot_device(uint32_t position);
> diff --git a/vl.c b/vl.c
> index 709d8cd..f31d008 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -1189,6 +1189,21 @@ void add_boot_device_path(int32_t bootindex, DeviceState *dev,
> QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
> }
>
> +void remove_boot_device_path(int32_t bootindex)
> +{
> + FWBootEntry *node, *next_node;
> +
> + if (bootindex == -1) {
> + return;
> + }
> +
> + QTAILQ_FOREACH_SAFE(node, &fw_boot_order, link, next_node)
Coding Style requires braces around the below single-statement if.
> + if (node->bootindex == bootindex) {
> + QTAILQ_REMOVE(&fw_boot_order, node, link);
> + return;
> + }
> +}
> +
> DeviceState *get_boot_device(uint32_t position)
> {
> uint32_t counter = 0;
Regards,
Andreas
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device
2014-05-19 15:31 ` Andreas Färber
@ 2014-05-19 15:57 ` Michael S. Tsirkin
2014-05-21 8:13 ` Andreas Färber
2014-05-21 7:50 ` Jun Li
1 sibling, 1 reply; 6+ messages in thread
From: Michael S. Tsirkin @ 2014-05-19 15:57 UTC (permalink / raw)
To: Andreas Färber
Cc: kwolf, famz, aliguori, marcel.a, juli, qemu-devel, Gerd Hoffmann,
stefanha, pbonzini, Jun Li
On Mon, May 19, 2014 at 05:31:43PM +0200, Andreas Färber wrote:
> Hi,
>
> Am 19.05.2014 17:03, schrieb Jun Li:
> > Add remove_boot_device_path() function to remove bootindex when hot-unplug
> > a device. This patch fixed virtio-blk/virtio-net/scsi-disk/scsi-generic device.
> >
> > Signed-off-by: Jun Li <junmuzi@gmail.com>
> > ---
> > This patch also fixed bug1086603, ref:
> > https://bugzilla.redhat.com/show_bug.cgi?id=1086603
> >
> > This version of patch delete dev and suffix parameter from function remove_boot_device_path().
> > ---
> > hw/block/virtio-blk.c | 1 +
> > hw/net/virtio-net.c | 1 +
> > hw/scsi/scsi-disk.c | 1 +
> > hw/scsi/scsi-generic.c | 1 +
>
> On v1 I believe I reminded you of spapr_llan. Your patch is adding a new
> remove_*() function, but is using it only for roughly half of the
> devices that currently call add_boot_device_path(). Why? I can
> understand that ISA devices will not be hot-unpluggable, but all PCI and
> USB devices are.
Can we remove the device from boot path automatically
when it's going away?
> hw/block/fdc.c: add_boot_device_path(isa->bootindexA, dev, "/floppy@0");
> hw/block/fdc.c: add_boot_device_path(isa->bootindexB, dev, "/floppy@1");
> hw/block/virtio-blk.c: add_boot_device_path(s->conf->bootindex, dev,
> "/disk@0,0");
> hw/core/loader.c: add_boot_device_path(bootindex, NULL, devpath);
> hw/i386/kvm/pci-assign.c: add_boot_device_path(dev->bootindex,
> &pci_dev->qdev, NULL);
> hw/ide/qdev.c: add_boot_device_path(dev->conf.bootindex, &dev->qdev,
> hw/misc/vfio.c: add_boot_device_path(vdev->bootindex, &pdev->qdev, NULL);
> hw/net/e1000.c: add_boot_device_path(d->conf.bootindex, dev,
> "/ethernet-phy@0");
> hw/net/eepro100.c: add_boot_device_path(s->conf.bootindex,
> &pci_dev->qdev, "/ethernet-phy@0");
> hw/net/ne2000.c: add_boot_device_path(s->c.bootindex, &pci_dev->qdev,
> "/ethernet-phy@0");
> hw/net/pcnet.c: add_boot_device_path(s->conf.bootindex, dev,
> "/ethernet-phy@0");
> hw/net/rtl8139.c: add_boot_device_path(s->conf.bootindex, d,
> "/ethernet-phy@0");
> hw/net/spapr_llan.c: add_boot_device_path(dev->nicconf.bootindex,
> DEVICE(dev), "");
> hw/net/virtio-net.c: add_boot_device_path(n->nic_conf.bootindex, dev,
> "/ethernet-phy@0");
> hw/net/vmxnet3.c: add_boot_device_path(s->conf.bootindex, dev,
> "/ethernet-phy@0");
> hw/scsi/scsi-disk.c: add_boot_device_path(s->qdev.conf.bootindex,
> &dev->qdev, NULL);
> hw/scsi/scsi-generic.c: add_boot_device_path(s->conf.bootindex,
> &s->qdev, NULL);
> hw/usb/dev-network.c: add_boot_device_path(s->conf.bootindex,
> &dev->qdev, "/ethernet@0");
> hw/usb/host-libusb.c: add_boot_device_path(s->bootindex, &udev->qdev,
> NULL);
> hw/usb/redirect.c: add_boot_device_path(dev->bootindex, &udev->qdev,
> NULL);
>
> > include/sysemu/sysemu.h | 1 +
> > vl.c | 15 +++++++++++++++
> > 6 files changed, 20 insertions(+)
> >
> > diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
> > index 8a568e5..497eb40 100644
> > --- a/hw/block/virtio-blk.c
> > +++ b/hw/block/virtio-blk.c
> > @@ -752,6 +752,7 @@ static void virtio_blk_device_unrealize(DeviceState *dev, Error **errp)
> > unregister_savevm(dev, "virtio-blk", s);
> > blockdev_mark_auto_del(s->bs);
> > virtio_cleanup(vdev);
> > + remove_boot_device_path(s->conf->bootindex);
> > }
> >
> > static Property virtio_blk_properties[] = {
> > diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
> > index 940a7cf..6afb1ca 100644
> > --- a/hw/net/virtio-net.c
> > +++ b/hw/net/virtio-net.c
> > @@ -1645,6 +1645,7 @@ static void virtio_net_device_unrealize(DeviceState *dev, Error **errp)
> > g_free(n->vqs);
> > qemu_del_nic(n->nic);
> > virtio_cleanup(vdev);
> > + remove_boot_device_path(n->nic_conf.bootindex);
> > }
> >
> > static void virtio_net_instance_init(Object *obj)
> > diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
> > index 4bcef55..d33df2e 100644
> > --- a/hw/scsi/scsi-disk.c
> > +++ b/hw/scsi/scsi-disk.c
> > @@ -2156,6 +2156,7 @@ static void scsi_destroy(SCSIDevice *dev)
> >
> > scsi_device_purge_requests(&s->qdev, SENSE_CODE(NO_SENSE));
> > blockdev_mark_auto_del(s->qdev.conf.bs);
> > + remove_boot_device_path(s->qdev.conf.bootindex);
>
> Didn't I previously ask that you use dev->config.bootindex here?
> Pointers to parent's struct shouldn't be accessed anywhere except
> VMStateDescription.
>
> > }
> >
> > static void scsi_disk_resize_cb(void *opaque)
> > diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c
> > index 3733d2c..d387f3e 100644
> > --- a/hw/scsi/scsi-generic.c
> > +++ b/hw/scsi/scsi-generic.c
> > @@ -390,6 +390,7 @@ static void scsi_destroy(SCSIDevice *s)
> > {
> > scsi_device_purge_requests(s, SENSE_CODE(NO_SENSE));
> > blockdev_mark_auto_del(s->conf.bs);
> > + remove_boot_device_path(s->conf.bootindex);
> > }
> >
> > static int scsi_generic_initfn(SCSIDevice *s)
> > diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
> > index ba5c7f8..2510e3b 100644
> > --- a/include/sysemu/sysemu.h
> > +++ b/include/sysemu/sysemu.h
> > @@ -193,6 +193,7 @@ void rtc_change_mon_event(struct tm *tm);
> >
> > void add_boot_device_path(int32_t bootindex, DeviceState *dev,
> > const char *suffix);
> > +void remove_boot_device_path(int32_t bootindex);
> > char *get_boot_devices_list(size_t *size, bool ignore_suffixes);
> >
> > DeviceState *get_boot_device(uint32_t position);
> > diff --git a/vl.c b/vl.c
> > index 709d8cd..f31d008 100644
> > --- a/vl.c
> > +++ b/vl.c
> > @@ -1189,6 +1189,21 @@ void add_boot_device_path(int32_t bootindex, DeviceState *dev,
> > QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
> > }
> >
> > +void remove_boot_device_path(int32_t bootindex)
> > +{
> > + FWBootEntry *node, *next_node;
> > +
> > + if (bootindex == -1) {
> > + return;
> > + }
> > +
> > + QTAILQ_FOREACH_SAFE(node, &fw_boot_order, link, next_node)
>
> Coding Style requires braces around the below single-statement if.
>
> > + if (node->bootindex == bootindex) {
> > + QTAILQ_REMOVE(&fw_boot_order, node, link);
> > + return;
> > + }
> > +}
> > +
> > DeviceState *get_boot_device(uint32_t position)
> > {
> > uint32_t counter = 0;
>
> Regards,
> Andreas
>
> --
> SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
> GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device
2014-05-19 15:31 ` Andreas Färber
2014-05-19 15:57 ` Michael S. Tsirkin
@ 2014-05-21 7:50 ` Jun Li
1 sibling, 0 replies; 6+ messages in thread
From: Jun Li @ 2014-05-21 7:50 UTC (permalink / raw)
To: Andreas Färber, qemu-devel
Cc: kwolf, famz, stefanha, marcel.a, mst, juli, Gerd Hoffmann,
aliguori, pbonzini
Hi Andreas,
On 05/19/2014 11:31 PM, Andreas Färber wrote:
> Hi,
>
> Am 19.05.2014 17:03, schrieb Jun Li:
>> Add remove_boot_device_path() function to remove bootindex when hot-unplug
>> a device. This patch fixed virtio-blk/virtio-net/scsi-disk/scsi-generic device.
>>
>> Signed-off-by: Jun Li <junmuzi@gmail.com>
>> ---
>> This patch also fixed bug1086603, ref:
>> https://bugzilla.redhat.com/show_bug.cgi?id=1086603
>>
>> This version of patch delete dev and suffix parameter from function remove_boot_device_path().
>> ---
>> hw/block/virtio-blk.c | 1 +
>> hw/net/virtio-net.c | 1 +
>> hw/scsi/scsi-disk.c | 1 +
>> hw/scsi/scsi-generic.c | 1 +
> On v1 I believe I reminded you of spapr_llan. Your patch is adding a new
> remove_*() function, but is using it only for roughly half of the
> devices that currently call add_boot_device_path(). Why? I can
> understand that ISA devices will not be hot-unpluggable, but all PCI and
> USB devices are.
Yes, as I am not so family with spapr_llan, so just fixed roughly half
of the devices. I have checked the following files.
> hw/block/fdc.c: add_boot_device_path(isa->bootindexA, dev, "/floppy@0");
No need here, ISA not support hot-unplug.
> hw/block/fdc.c: add_boot_device_path(isa->bootindexB, dev, "/floppy@1");
No need here, ISA not support hot-unplug.
> hw/block/virtio-blk.c: add_boot_device_path(s->conf->bootindex, dev,
> "/disk@0,0");
Has done.
> hw/core/loader.c: add_boot_device_path(bootindex, NULL, devpath);
No need here.
> hw/i386/kvm/pci-assign.c: add_boot_device_path(dev->bootindex,
> &pci_dev->qdev, NULL);
I will add in assigned_exitfn().
> hw/ide/qdev.c: add_boot_device_path(dev->conf.bootindex, &dev->qdev,
ide doesn't support hot-unplug. so no need here.
> hw/misc/vfio.c: add_boot_device_path(vdev->bootindex, &pdev->qdev, NULL);
I will add in vfio_exitfn().
> hw/net/e1000.c: add_boot_device_path(d->conf.bootindex, dev,
> "/ethernet-phy@0");
I will add in pci_e1000_uninit().
> hw/net/eepro100.c: add_boot_device_path(s->conf.bootindex,
> &pci_dev->qdev, "/ethernet-phy@0");
I will add in pci_nic_uninit().
> hw/net/ne2000.c: add_boot_device_path(s->c.bootindex, &pci_dev->qdev,
> "/ethernet-phy@0");
I will add in ci_ne2000_exit().
> hw/net/pcnet.c: add_boot_device_path(s->conf.bootindex, dev,
> "/ethernet-phy@0");
No need here.
> hw/net/rtl8139.c: add_boot_device_path(s->conf.bootindex, d,
> "/ethernet-phy@0");
I will in add pci_rtl8139_uninit().
> hw/net/spapr_llan.c: add_boot_device_path(dev->nicconf.bootindex,
> DEVICE(dev), "");
No need here.
> hw/net/virtio-net.c: add_boot_device_path(n->nic_conf.bootindex, dev,
> "/ethernet-phy@0");
I will add in virtio_net_device_unrealize().
> hw/net/vmxnet3.c: add_boot_device_path(s->conf.bootindex, dev,
> "/ethernet-phy@0");
I will add in vmxnet3_pci_uninit().
> hw/scsi/scsi-disk.c: add_boot_device_path(s->qdev.conf.bootindex,
> &dev->qdev, NULL);
has done.
> hw/scsi/scsi-generic.c: add_boot_device_path(s->conf.bootindex,
> &s->qdev, NULL);
it doesn't support hot-unplug, so no need here.
> hw/usb/dev-network.c: add_boot_device_path(s->conf.bootindex,
> &dev->qdev, "/ethernet@0");
no need here.
> hw/usb/host-libusb.c: add_boot_device_path(s->bootindex, &udev->qdev,
> NULL);
No need here.
> hw/usb/redirect.c: add_boot_device_path(dev->bootindex, &udev->qdev,
> NULL);
No need here. Generic pass-through doesn't support hot-unplug.
>
>> include/sysemu/sysemu.h | 1 +
>> vl.c | 15 +++++++++++++++
>> 6 files changed, 20 insertions(+)
>>
>> diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
>> index 8a568e5..497eb40 100644
>> --- a/hw/block/virtio-blk.c
>> +++ b/hw/block/virtio-blk.c
>> @@ -752,6 +752,7 @@ static void virtio_blk_device_unrealize(DeviceState *dev, Error **errp)
>> unregister_savevm(dev, "virtio-blk", s);
>> blockdev_mark_auto_del(s->bs);
>> virtio_cleanup(vdev);
>> + remove_boot_device_path(s->conf->bootindex);
>> }
>>
>> static Property virtio_blk_properties[] = {
>> diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
>> index 940a7cf..6afb1ca 100644
>> --- a/hw/net/virtio-net.c
>> +++ b/hw/net/virtio-net.c
>> @@ -1645,6 +1645,7 @@ static void virtio_net_device_unrealize(DeviceState *dev, Error **errp)
>> g_free(n->vqs);
>> qemu_del_nic(n->nic);
>> virtio_cleanup(vdev);
>> + remove_boot_device_path(n->nic_conf.bootindex);
>> }
>>
>> static void virtio_net_instance_init(Object *obj)
>> diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
>> index 4bcef55..d33df2e 100644
>> --- a/hw/scsi/scsi-disk.c
>> +++ b/hw/scsi/scsi-disk.c
>> @@ -2156,6 +2156,7 @@ static void scsi_destroy(SCSIDevice *dev)
>>
>> scsi_device_purge_requests(&s->qdev, SENSE_CODE(NO_SENSE));
>> blockdev_mark_auto_del(s->qdev.conf.bs);
>> + remove_boot_device_path(s->qdev.conf.bootindex);
> Didn't I previously ask that you use dev->config.bootindex here?
> Pointers to parent's struct shouldn't be accessed anywhere except
> VMStateDescription.
ok.
>> }
>>
>> static void scsi_disk_resize_cb(void *opaque)
>> diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c
>> index 3733d2c..d387f3e 100644
>> --- a/hw/scsi/scsi-generic.c
>> +++ b/hw/scsi/scsi-generic.c
>> @@ -390,6 +390,7 @@ static void scsi_destroy(SCSIDevice *s)
>> {
>> scsi_device_purge_requests(s, SENSE_CODE(NO_SENSE));
>> blockdev_mark_auto_del(s->conf.bs);
>> + remove_boot_device_path(s->conf.bootindex);
>> }
>>
>> static int scsi_generic_initfn(SCSIDevice *s)
>> diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
>> index ba5c7f8..2510e3b 100644
>> --- a/include/sysemu/sysemu.h
>> +++ b/include/sysemu/sysemu.h
>> @@ -193,6 +193,7 @@ void rtc_change_mon_event(struct tm *tm);
>>
>> void add_boot_device_path(int32_t bootindex, DeviceState *dev,
>> const char *suffix);
>> +void remove_boot_device_path(int32_t bootindex);
>> char *get_boot_devices_list(size_t *size, bool ignore_suffixes);
>>
>> DeviceState *get_boot_device(uint32_t position);
>> diff --git a/vl.c b/vl.c
>> index 709d8cd..f31d008 100644
>> --- a/vl.c
>> +++ b/vl.c
>> @@ -1189,6 +1189,21 @@ void add_boot_device_path(int32_t bootindex, DeviceState *dev,
>> QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
>> }
>>
>> +void remove_boot_device_path(int32_t bootindex)
>> +{
>> + FWBootEntry *node, *next_node;
>> +
>> + if (bootindex == -1) {
>> + return;
>> + }
>> +
>> + QTAILQ_FOREACH_SAFE(node, &fw_boot_order, link, next_node)
> Coding Style requires braces around the below single-statement if.
ok. I will submit a update version later. Thank you very much.
Best Regards,
Jun Li
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device
2014-05-19 15:57 ` Michael S. Tsirkin
@ 2014-05-21 8:13 ` Andreas Färber
2014-05-22 14:58 ` Jun Li
0 siblings, 1 reply; 6+ messages in thread
From: Andreas Färber @ 2014-05-21 8:13 UTC (permalink / raw)
To: Michael S. Tsirkin, Jun Li
Cc: kwolf, famz, stefanha, marcel.a, juli, qemu-devel, Gerd Hoffmann,
aliguori, pbonzini
Am 19.05.2014 17:57, schrieb Michael S. Tsirkin:
> On Mon, May 19, 2014 at 05:31:43PM +0200, Andreas Färber wrote:
>> Hi,
>>
>> Am 19.05.2014 17:03, schrieb Jun Li:
>>> Add remove_boot_device_path() function to remove bootindex when hot-unplug
>>> a device. This patch fixed virtio-blk/virtio-net/scsi-disk/scsi-generic device.
>>>
>>> Signed-off-by: Jun Li <junmuzi@gmail.com>
>>> ---
>>> This patch also fixed bug1086603, ref:
>>> https://bugzilla.redhat.com/show_bug.cgi?id=1086603
>>>
>>> This version of patch delete dev and suffix parameter from function remove_boot_device_path().
>>> ---
>>> hw/block/virtio-blk.c | 1 +
>>> hw/net/virtio-net.c | 1 +
>>> hw/scsi/scsi-disk.c | 1 +
>>> hw/scsi/scsi-generic.c | 1 +
>>
>> On v1 I believe I reminded you of spapr_llan. Your patch is adding a new
>> remove_*() function, but is using it only for roughly half of the
>> devices that currently call add_boot_device_path(). Why? I can
>> understand that ISA devices will not be hot-unpluggable, but all PCI and
>> USB devices are.
>
> Can we remove the device from boot path automatically
> when it's going away?
I'm not familiar with that code myself; assuming that only one path gets
registered per device, I guess we could add a field to DeviceState and
if non-NULL call the unregistration from device_set_unrealize().
Jun, if that works it would save you some work.
Regards,
Andreas
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device
2014-05-21 8:13 ` Andreas Färber
@ 2014-05-22 14:58 ` Jun Li
0 siblings, 0 replies; 6+ messages in thread
From: Jun Li @ 2014-05-22 14:58 UTC (permalink / raw)
To: Andreas Färber, Michael S. Tsirkin
Cc: kwolf, famz, stefanha, marcel.a, juli, qemu-devel, Gerd Hoffmann,
aliguori, pbonzini
On 05/21/2014 04:13 PM, Andreas Färber wrote:
> Am 19.05.2014 17:57, schrieb Michael S. Tsirkin:
>> On Mon, May 19, 2014 at 05:31:43PM +0200, Andreas Färber wrote:
>>> Hi,
>>>
>>> Am 19.05.2014 17:03, schrieb Jun Li:
>>>> Add remove_boot_device_path() function to remove bootindex when hot-unplug
>>>> a device. This patch fixed virtio-blk/virtio-net/scsi-disk/scsi-generic device.
>>>>
>>>> Signed-off-by: Jun Li <junmuzi@gmail.com>
>>>> ---
>>>> This patch also fixed bug1086603, ref:
>>>> https://bugzilla.redhat.com/show_bug.cgi?id=1086603
>>>>
>>>> This version of patch delete dev and suffix parameter from function remove_boot_device_path().
>>>> ---
>>>> hw/block/virtio-blk.c | 1 +
>>>> hw/net/virtio-net.c | 1 +
>>>> hw/scsi/scsi-disk.c | 1 +
>>>> hw/scsi/scsi-generic.c | 1 +
>>> On v1 I believe I reminded you of spapr_llan. Your patch is adding a new
>>> remove_*() function, but is using it only for roughly half of the
>>> devices that currently call add_boot_device_path(). Why? I can
>>> understand that ISA devices will not be hot-unpluggable, but all PCI and
>>> USB devices are.
>> Can we remove the device from boot path automatically
>> when it's going away?
> I'm not familiar with that code myself; assuming that only one path gets
> registered per device, I guess we could add a field to DeviceState and
> if non-NULL call the unregistration from device_set_unrealize().
>
> Jun, if that works it would save you some work.
Hi Andreas,
Add a field to DeviceState is another method to fix this issue.
But when using this method, should delete add_boot_device_path() and add
boot path in register per device. I can not estimate the potential
issues. Could any guy give your opinion? I will do some researches this
weekend. Thx.
Add remove_boot_device_path(), we can call this function where it
needs. It's easy to realize. :-)
Best Regards,
Jun Li
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-05-22 14:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-19 15:03 [Qemu-devel] [PATCH v3] Add remove_boot_device_path() function for hot-unplug device Jun Li
2014-05-19 15:31 ` Andreas Färber
2014-05-19 15:57 ` Michael S. Tsirkin
2014-05-21 8:13 ` Andreas Färber
2014-05-22 14:58 ` Jun Li
2014-05-21 7:50 ` Jun Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).