mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-23 21:15:20 +00:00
util: fix removal of callbacks in virCloseCallbacksRun
The close callbacks hash are keyed by a UUID-string, but virCloseCallbacksRun was attempting to remove them by raw UUID. This patch ensures the callback entries are removed by UUID-string as well. This bug caused problems when guest migrations were abnormally aborted: # timeout --signal KILL 1 \ virsh migrate example qemu+tls://remote/system \ --verbose --compressed --live --auto-converge \ --abort-on-error --unsafe --persistent \ --undefinesource --copy-storage-all --xml example.xml Killed # virsh migrate example qemu+tls://remote/system \ --verbose --compressed --live --auto-converge \ --abort-on-error --unsafe --persistent \ --undefinesource --copy-storage-all --xml example.xml error: Requested operation is not valid: domain 'example' is not being migrated Signed-off-by: Michael Chapman <mike@very.puzzling.org> (cherry picked from commit fa2607d57713f4234ff75777468f43d9f5ec67a2)
This commit is contained in:
parent
9a0e0d3f17
commit
29b3402b8b
@ -331,8 +331,9 @@ virCloseCallbacksRun(virCloseCallbacksPtr closeCallbacks,
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
for (i = 0; i < list->nentries; i++) {
|
for (i = 0; i < list->nentries; i++) {
|
||||||
virHashRemoveEntry(closeCallbacks->list,
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
||||||
list->entries[i].uuid);
|
virUUIDFormat(list->entries[i].uuid, uuidstr);
|
||||||
|
virHashRemoveEntry(closeCallbacks->list, uuidstr);
|
||||||
}
|
}
|
||||||
virObjectUnlock(closeCallbacks);
|
virObjectUnlock(closeCallbacks);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user