mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 23:25:24 +00:00
snapshot: allow disk snapshots of qcow2 disks
For all types of disks other than qcow2, we were requesting that SELinux labeling visit the new file as if it were qcow2, which means labeling would try to find the backing files of an empty file. And for a pre-existing qcow2 disk, we were passing NULL, which meant that labelling tried to probe the file type (and if probing is disabled, per the default qemu.conf, this made snapshots fail). What we really want is to make SELinux labeling visit the new file as raw; it will later be converted to qcow2 if qemu successfully made the snapshot. * src/qemu/qemu_driver.c (qemuDomainSnapshotCreateSingleDiskActive): Force SELinux labeling to avoid probe of new file.
This commit is contained in:
parent
2895905a0b
commit
43c2641c18
@ -9151,7 +9151,7 @@ qemuDomainSnapshotCreateSingleDiskActive(struct qemud_driver *driver,
|
|||||||
origsrc = disk->src;
|
origsrc = disk->src;
|
||||||
disk->src = source;
|
disk->src = source;
|
||||||
origdriver = disk->driverType;
|
origdriver = disk->driverType;
|
||||||
disk->driverType = driverType;
|
disk->driverType = (char *) "raw"; /* Don't want to probe backing files */
|
||||||
|
|
||||||
if (virDomainLockDiskAttach(driver->lockManager, vm, disk) < 0)
|
if (virDomainLockDiskAttach(driver->lockManager, vm, disk) < 0)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
Loading…
Reference in New Issue
Block a user