提交 a4ed5b42 编写于 作者: P Peter Krempa

qemu: Don't try to find compression program for "raw" memory images

There's nothing to compress if the requested snapshot memory format is
set to 'raw' explicitly. After commit 9e14689e libvirt would try to
run /sbin/raw to process the memory stream if the qemu.conf option
snapshot_image_format is set.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1402726
上级 3cd556d4
...@@ -3291,6 +3291,9 @@ qemuGetCompressionProgram(const char *imageFormat, ...@@ -3291,6 +3291,9 @@ qemuGetCompressionProgram(const char *imageFormat,
if ((ret = qemuSaveCompressionTypeFromString(imageFormat)) < 0) if ((ret = qemuSaveCompressionTypeFromString(imageFormat)) < 0)
goto error; goto error;
if (ret == QEMU_SAVE_FORMAT_RAW)
return QEMU_SAVE_FORMAT_RAW;
if (!(*compresspath = virFindFileInPath(imageFormat))) if (!(*compresspath = virFindFileInPath(imageFormat)))
goto error; goto error;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册