On Thu, 27 Nov 2014 13:41:07 +0200 Marcel Apfelbaum <marce...@redhat.com> wrote:
> On Thu, 2014-11-27 at 19:35 +0800, Zhu Guihua wrote: > > On Thu, 2014-11-27 at 13:11 +0200, Marcel Apfelbaum wrote: > > > On Wed, 2014-11-26 at 13:05 -0500, Luiz Capitulino wrote: > > > > On Wed, 26 Nov 2014 13:50:01 +0200 > > > > Marcel Apfelbaum <marce...@redhat.com> wrote: > > > > > > > > > The commits: > > > > > - 6a1fa9f5 (monitor: add del completion for peripheral device) > > > > > - 66e56b13 (qdev: add qdev_build_hotpluggable_device_list helper) > > > > > > > > > > cause a QEMU crash when trying to use HMP device_del auto-completion. > > > > > It can be easily reproduced by: > > > > > <qemu-bin> -enable-kvm ~/images/fedora.qcow2 -monitor stdio > > > > > -device virtio-net-pci,id=vnet > > > > > > > > > > (qemu) device_del > > > > > > > > > > /home/mapfelba/git/upstream/qemu/hw/core/qdev.c:941:qdev_build_hotpluggable_device_list: > > > > > Object 0x7f6ce04e4fe0 is not an instance of type device > > > > > Aborted (core dumped) > > > > > > > > > > The root cause is qdev_build_hotpluggable_device_list going > > > > > recursively over > > > > > all peripherals and their children assuming all are devices. It > > > > > doesn't work > > > > > since PCI devices have at least on child which is a memory region > > > > > (bus master). > > > > > > > > > > Solved by observing that all devices appear as direct children of > > > > > /machine/peripheral container. No need of going recursively > > > > > over all the children. > > > > > > > > > > Signed-off-by: Marcel Apfelbaum <marce...@redhat.com> > > > > > > > > Peter, can you apply this patch directly to master to avoid me a pull > > > > request? Maybe it's a good idea to wait until tomorrow for more > > > > reviewers though. > > > Speaking of reviewers, I double checked the patch and indeed it solves > > > the crash, but the original patch has another semantic error. > > > It looks for hot-pluggable device and not *hot-plugged* ones. > > > > > > I'll try to come with a solution fast. It should be a "hot-plugged" > > > property somewhere... > > > > > Hi Marcel, > > > > May you give an example for a hot-plugged but non-hot-pluggable device? > I was talking about something different: > A hot-pluggable device that was not hot-plugged is assumed to be > hot-unpluggable. > This is not true for pci-2-pci device. > > But this is another issue and can wait for 2.3. Agreed. We're on blockers phase right now. So, if it's not a blocker, it can wait for -stable. > So you patch was *almost* correct for looking hotpluggable devices, > the only problem we have is with pci-2-pci bridge (, and maybe with others > that I don't know). > > But for now, we should get the crash fix in and handle that separately > for 2.3. If anybody has a better idea, pleas advice.