]> xenbits.xensource.com Git - libvirt.git/commit
qemuDomainChangeEjectableMedia: Unlock domain while waiting for event
authorMichal Privoznik <mprivozn@redhat.com>
Mon, 20 May 2013 17:26:14 +0000 (19:26 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Tue, 21 May 2013 08:42:21 +0000 (10:42 +0200)
commit543af79a14f06cd16844c28887210bbb93a455fa
treef41db7ccb17f6d2015b45c015483206477fc9ddb
parentf5bf1f3a00b7f9cccc608b804ecc5de4d02cb6b4
qemuDomainChangeEjectableMedia: Unlock domain while waiting for event

In 84c59ffa I've tried to fix changing ejectable media process. The
process should go like this:

1) we need to call 'eject' on the monitor
2) we should wait for 'DEVICE_TRAY_MOVED' event
3) now we can issue 'change' command

However, while waiting in step 2) the domain monitor was locked. So
even if qemu reported the desired event, the proper callback was not
called immediately. The monitor handling code needs to lock the
monitor in order to read the event. So that's the first lock we must
not hold while waiting. The second one is the domain lock. When
monitor handling code reads an event, the appropriate callback is
called then. The first thing that each callback does is locking the
corresponding domain as a domain or its device is about to change
state. So we need to unlock both monitor and VM lock. Well, holding
any lock while sleep()-ing is not the best thing to do anyway.
src/qemu/qemu_hotplug.c