* [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? @ 2017-06-18 7:21 Xie Changlong 2017-06-19 4:09 ` Xie Changlong 2017-06-19 7:27 ` Kevin Wolf 0 siblings, 2 replies; 7+ messages in thread From: Xie Changlong @ 2017-06-18 7:21 UTC (permalink / raw) To: qemu-devel, qemu-block, Paolo Bonzini, Michael S. Tsirkin, Kevin Wolf, Stefan Hajnoczi, Fam Zheng, Max Reitz Hi all In device hot-remove scenario, if we don't probe acpiphp module on the guest, 'device_del' will never emit DEVICE_DELETED event(because guest will not write to __EJ0) . So we can confirm that hot-remove failed. But IIUC, there is no event such as DEVICE_ADDED, so 1) How can we confirm hotplug('device_add') successfully? 2) It seems when hot-plug disk, we don't care acpiphp module status on the guest, am I right? 3) Why there is no DEVICE_ADDED like event? Any answer would be appreciated, thanks. -- Thanks -Xie ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? 2017-06-18 7:21 [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? Xie Changlong @ 2017-06-19 4:09 ` Xie Changlong 2017-06-19 7:27 ` Kevin Wolf 1 sibling, 0 replies; 7+ messages in thread From: Xie Changlong @ 2017-06-19 4:09 UTC (permalink / raw) To: qemu-devel, qemu-block, Paolo Bonzini, Michael S. Tsirkin, Kevin Wolf, Stefan Hajnoczi, Fam Zheng, Max Reitz Resend 在 6/18/2017 3:21 PM, Xie Changlong 写道: > Hi all > > In device hot-remove scenario, if we don't probe acpiphp module on the > guest, 'device_del' will never emit DEVICE_DELETED event(because guest > will not write to __EJ0) . So we can confirm that hot-remove failed. But > IIUC, there is no event such as DEVICE_ADDED, so > 1) How can we confirm hotplug('device_add') successfully? > 2) It seems when hot-plug disk, we don't care acpiphp module status on > the guest, am I right? > 3) Why there is no DEVICE_ADDED like event? > > Any answer would be appreciated, thanks. > -- Thanks -Xie ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? 2017-06-18 7:21 [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? Xie Changlong 2017-06-19 4:09 ` Xie Changlong @ 2017-06-19 7:27 ` Kevin Wolf 2017-06-19 10:27 ` Xie Changlong 1 sibling, 1 reply; 7+ messages in thread From: Kevin Wolf @ 2017-06-19 7:27 UTC (permalink / raw) To: Xie Changlong Cc: qemu-devel, qemu-block, Paolo Bonzini, Michael S. Tsirkin, Stefan Hajnoczi, Fam Zheng, Max Reitz Am 18.06.2017 um 09:21 hat Xie Changlong geschrieben: > In device hot-remove scenario, if we don't probe acpiphp module on > the guest, 'device_del' will never emit DEVICE_DELETED event(because > guest will not write to __EJ0) . So we can confirm that hot-remove > failed. But IIUC, there is no event such as DEVICE_ADDED, so > 1) How can we confirm hotplug('device_add') successfully? > 2) It seems when hot-plug disk, we don't care acpiphp module status > on the guest, am I right? > 3) Why there is no DEVICE_ADDED like event? device_add doesn't need guest cooperation, so it is immediately completed when the QMP command returns success. Kevin ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? 2017-06-19 7:27 ` Kevin Wolf @ 2017-06-19 10:27 ` Xie Changlong 2017-06-19 10:49 ` Kevin Wolf 0 siblings, 1 reply; 7+ messages in thread From: Xie Changlong @ 2017-06-19 10:27 UTC (permalink / raw) To: Kevin Wolf Cc: qemu-devel, qemu-block, Paolo Bonzini, Michael S. Tsirkin, Stefan Hajnoczi, Fam Zheng, Max Reitz 在 6/19/2017 3:27 PM, Kevin Wolf 写道: > Am 18.06.2017 um 09:21 hat Xie Changlong geschrieben: >> In device hot-remove scenario, if we don't probe acpiphp module on >> the guest, 'device_del' will never emit DEVICE_DELETED event(because >> guest will not write to __EJ0) . So we can confirm that hot-remove >> failed. But IIUC, there is no event such as DEVICE_ADDED, so >> 1) How can we confirm hotplug('device_add') successfully? >> 2) It seems when hot-plug disk, we don't care acpiphp module status >> on the guest, am I right? >> 3) Why there is no DEVICE_ADDED like event? > > device_add doesn't need guest cooperation, so it is immediately > completed when the QMP command returns success. > That's what i though too. But I have a question, if we don't proble acpiphp on the guest, and execute below commands: Hot plug: (qemu) drive_add 0 file=/resource/changlox/test.raw,id=drive-virtio-disk1,if=none (qemu) device_add virtio-blk-pci,drive=drive-virtio-disk1,id=virtio-disk1 Hot remove: (qemu) device_del virtio-disk1 (qemu) drive_del drive-virtio-disk1 (qemu) qom-list /machine/peripheral type (string) virtio-disk1 (child<virtio-blk-pci>) (qemu) info block foo (#block122): suse1.qcow2 (qcow2) Cache mode: writeback, direct Backing file: suse.qcow2.orgin (chain depth: 1) ide1-cd0: [not inserted] Removable device: not locked, tray closed floppy0: [not inserted] Removable device: not locked, tray closed sd0: [not inserted] Removable device: not locked, tray closed (qemu) drive_add 0 file=/resource/changlox/test.raw,id=drive-virtio-disk1,if=none Duplicate ID 'drive-virtio-disk1' for drive 'info block' shows nothing, but we can't add drive who's id is'drive-virtio-disk1' too。 There is a more serious situation, we could *never* destory device memory with 'device_del', it's memory leak to me if the guest os never support hot-plug and the user don't know this information. > Kevin > -- Thanks -Xie ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? 2017-06-19 10:27 ` Xie Changlong @ 2017-06-19 10:49 ` Kevin Wolf 2017-06-22 1:12 ` Xie Changlong 2017-06-22 13:56 ` Markus Armbruster 0 siblings, 2 replies; 7+ messages in thread From: Kevin Wolf @ 2017-06-19 10:49 UTC (permalink / raw) To: Xie Changlong Cc: qemu-devel, qemu-block, Paolo Bonzini, Michael S. Tsirkin, Stefan Hajnoczi, Fam Zheng, Max Reitz, armbru Am 19.06.2017 um 12:27 hat Xie Changlong geschrieben: > 在 6/19/2017 3:27 PM, Kevin Wolf 写道: > >Am 18.06.2017 um 09:21 hat Xie Changlong geschrieben: > >>In device hot-remove scenario, if we don't probe acpiphp module on > >>the guest, 'device_del' will never emit DEVICE_DELETED event(because > >>guest will not write to __EJ0) . So we can confirm that hot-remove > >>failed. But IIUC, there is no event such as DEVICE_ADDED, so > >>1) How can we confirm hotplug('device_add') successfully? > >>2) It seems when hot-plug disk, we don't care acpiphp module status > >>on the guest, am I right? > >>3) Why there is no DEVICE_ADDED like event? > > > >device_add doesn't need guest cooperation, so it is immediately > >completed when the QMP command returns success. > > > > That's what i though too. But I have a question, if we don't proble > acpiphp on the guest, and execute below commands: > > Hot plug: > (qemu) drive_add 0 > file=/resource/changlox/test.raw,id=drive-virtio-disk1,if=none > (qemu) device_add virtio-blk-pci,drive=drive-virtio-disk1,id=virtio-disk1 > > Hot remove: > (qemu) device_del virtio-disk1 > (qemu) drive_del drive-virtio-disk1 > (qemu) qom-list /machine/peripheral > type (string) > virtio-disk1 (child<virtio-blk-pci>) > (qemu) info block > foo (#block122): suse1.qcow2 (qcow2) > Cache mode: writeback, direct > Backing file: suse.qcow2.orgin (chain depth: 1) > > ide1-cd0: [not inserted] > Removable device: not locked, tray closed > > floppy0: [not inserted] > Removable device: not locked, tray closed > > sd0: [not inserted] > Removable device: not locked, tray closed > (qemu) drive_add 0 > file=/resource/changlox/test.raw,id=drive-virtio-disk1,if=none > Duplicate ID 'drive-virtio-disk1' for drive > > 'info block' shows nothing, but we can't add drive who's id > is'drive-virtio-disk1' too. Yes, the old BlockBackend is only fully freed when the guest actually unplugs the device. Specifically, we would have to free the QemuOpts in DriveInfo that keeps the ID reserved. Currently, it is only freed when the BlockBackend is destroyed: blockdev_auto_del() blk_unref() blk_delete() drive_info_del() We can't free the DriveInfo earlier because it's still needed while the guest device is still alive. I'm not sure, but it may be possible to free just the QemuOpts in monitor_remove_blk(), so that the ID can immediately be reused. Markus, would you know? > There is a more serious situation, we > could *never* destory device memory with 'device_del', it's memory > leak to me if the guest os never support hot-plug and the user don't > know this information. The user sees that they never get a DEVICE_REMOVED event, so in some way the do know about it. Kevin ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? 2017-06-19 10:49 ` Kevin Wolf @ 2017-06-22 1:12 ` Xie Changlong 2017-06-22 13:56 ` Markus Armbruster 1 sibling, 0 replies; 7+ messages in thread From: Xie Changlong @ 2017-06-22 1:12 UTC (permalink / raw) To: Kevin Wolf Cc: qemu-devel, qemu-block, Paolo Bonzini, Michael S. Tsirkin, Stefan Hajnoczi, Fam Zheng, Max Reitz, armbru 在 6/19/2017 6:49 PM, Kevin Wolf 写道: >> 'info block' shows nothing, but we can't add drive who's id >> is'drive-virtio-disk1' too. > Yes, the old BlockBackend is only fully freed when the guest actually > unplugs the device. Specifically, we would have to free the QemuOpts > in DriveInfo that keeps the ID reserved. Currently, it is only freed > when the BlockBackend is destroyed: > > blockdev_auto_del() > blk_unref() > blk_delete() > drive_info_del() > > We can't free the DriveInfo earlier because it's still needed while the > guest device is still alive. > > I'm not sure, but it may be possible to free just the QemuOpts in > monitor_remove_blk(), so that the ID can immediately be reused. > > Markus, would you know? > Hi, all. Any ideas? >> There is a more serious situation, we >> could*never* destory device memory with 'device_del', it's memory >> leak to me if the guest os never support hot-plug and the user don't >> know this information. > The user sees that they never get a DEVICE_REMOVED event, so in some way > the do know about it. But the useless memory is always there and no way to free it, although we known that. BTW, is it possible to force destroy the BlockBackend in this situation? -- Thanks -Xie ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? 2017-06-19 10:49 ` Kevin Wolf 2017-06-22 1:12 ` Xie Changlong @ 2017-06-22 13:56 ` Markus Armbruster 1 sibling, 0 replies; 7+ messages in thread From: Markus Armbruster @ 2017-06-22 13:56 UTC (permalink / raw) To: Kevin Wolf Cc: Xie Changlong, Fam Zheng, qemu-block, Michael S. Tsirkin, qemu-devel, Max Reitz, Stefan Hajnoczi, Paolo Bonzini Kevin Wolf <kwolf@redhat.com> writes: > Am 19.06.2017 um 12:27 hat Xie Changlong geschrieben: >> 在 6/19/2017 3:27 PM, Kevin Wolf 写道: >> >Am 18.06.2017 um 09:21 hat Xie Changlong geschrieben: >> >>In device hot-remove scenario, if we don't probe acpiphp module on >> >>the guest, 'device_del' will never emit DEVICE_DELETED event(because >> >>guest will not write to __EJ0) . So we can confirm that hot-remove >> >>failed. But IIUC, there is no event such as DEVICE_ADDED, so >> >>1) How can we confirm hotplug('device_add') successfully? >> >>2) It seems when hot-plug disk, we don't care acpiphp module status >> >>on the guest, am I right? >> >>3) Why there is no DEVICE_ADDED like event? >> > >> >device_add doesn't need guest cooperation, so it is immediately >> >completed when the QMP command returns success. >> > >> >> That's what i though too. But I have a question, if we don't proble >> acpiphp on the guest, and execute below commands: >> >> Hot plug: >> (qemu) drive_add 0 >> file=/resource/changlox/test.raw,id=drive-virtio-disk1,if=none >> (qemu) device_add virtio-blk-pci,drive=drive-virtio-disk1,id=virtio-disk1 >> >> Hot remove: >> (qemu) device_del virtio-disk1 >> (qemu) drive_del drive-virtio-disk1 >> (qemu) qom-list /machine/peripheral >> type (string) >> virtio-disk1 (child<virtio-blk-pci>) >> (qemu) info block >> foo (#block122): suse1.qcow2 (qcow2) >> Cache mode: writeback, direct >> Backing file: suse.qcow2.orgin (chain depth: 1) >> >> ide1-cd0: [not inserted] >> Removable device: not locked, tray closed >> >> floppy0: [not inserted] >> Removable device: not locked, tray closed >> >> sd0: [not inserted] >> Removable device: not locked, tray closed >> (qemu) drive_add 0 >> file=/resource/changlox/test.raw,id=drive-virtio-disk1,if=none >> Duplicate ID 'drive-virtio-disk1' for drive >> >> 'info block' shows nothing, but we can't add drive who's id >> is'drive-virtio-disk1' too. > > Yes, the old BlockBackend is only fully freed when the guest actually > unplugs the device. Specifically, we would have to free the QemuOpts > in DriveInfo that keeps the ID reserved. Currently, it is only freed > when the BlockBackend is destroyed: > > blockdev_auto_del() > blk_unref() > blk_delete() > drive_info_del() > > We can't free the DriveInfo earlier because it's still needed while the > guest device is still alive. > > I'm not sure, but it may be possible to free just the QemuOpts in > monitor_remove_blk(), so that the ID can immediately be reused. > > Markus, would you know? It's complicated :) = Abstract discussion = QemuOpts enforces unique IDs. The things configured by QemuOpts often also have unique IDs. If a certain kind of thing is always created from a QemuOpts, and it keeps its QemuOpts alive until it dies itself, then needn't enfore unique IDs itself. If it does anyway, these errors are unreachable. If it can be created without QemuOpts, or its QemuOpts can die early, then it has to enforce unique IDs itself. This can lead to inconsistent error messages: if the clash is detected by QemuOpts, QemuOpts reports it, but if its only detected by the thing, the thing reports it. If your thing enforces unique IDs itself, and nothing needs its QemuOpts, then it can destroy it at any time. Note that -writeconfig needs all QemuOpts created for command line options left of it. With the benefit of hindsight: QemuOpts tries to do too much. It should just parse option arguments (treating "id" like any other parameter) and optionally accumulate parsed option arguments, so you can act on them later (command line works that way). = Concrete discussion = Initially, every block backend had a unique name, but this has changed, and I don't know for sure whether block backends rely in QemuOpts for enforcing uniqueness now, and what else might need the QemuOpts. HMP drive_del has awkward semantics that require removing the name from the backend in some cases. I guess the QemuOpts ID should also go away then, but I'm not sure, it's been too long since I messed around in that particular swamp. Sorry I can't give more definite answers. >> There is a more serious situation, we >> could *never* destory device memory with 'device_del', it's memory >> leak to me if the guest os never support hot-plug and the user don't >> know this information. > > The user sees that they never get a DEVICE_REMOVED event, so in some way > the do know about it. Concur. There is no leak, we simply can't unplug. We can't even tell the user that we can't unplug. ACPI unplug is an afterthought, and it shows. ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2017-06-22 13:56 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-06-18 7:21 [Qemu-devel] [Question] How can we confirm hot-plug disk succesfully? Xie Changlong 2017-06-19 4:09 ` Xie Changlong 2017-06-19 7:27 ` Kevin Wolf 2017-06-19 10:27 ` Xie Changlong 2017-06-19 10:49 ` Kevin Wolf 2017-06-22 1:12 ` Xie Changlong 2017-06-22 13:56 ` Markus Armbruster
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).