diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-05-21 21:21:26 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-05-21 21:21:26 +0200 |
| commit | 4b927bc37359dec23f67d3427fc982945f24f404 (patch) | |
| tree | 245449ef9146942dc7fffd0235b48b7e70a00bf2 /gitlab/issues/target_missing/host_missing/accel_missing/1796.toml | |
| parent | aa8bd79cec7bf6790ddb01d156c2ef2201abbaab (diff) | |
| download | qemu-analysis-4b927bc37359dec23f67d3427fc982945f24f404.tar.gz qemu-analysis-4b927bc37359dec23f67d3427fc982945f24f404.zip | |
add gitlab issues in toml format
Diffstat (limited to 'gitlab/issues/target_missing/host_missing/accel_missing/1796.toml')
| -rw-r--r-- | gitlab/issues/target_missing/host_missing/accel_missing/1796.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gitlab/issues/target_missing/host_missing/accel_missing/1796.toml b/gitlab/issues/target_missing/host_missing/accel_missing/1796.toml new file mode 100644 index 000000000..662170a35 --- /dev/null +++ b/gitlab/issues/target_missing/host_missing/accel_missing/1796.toml @@ -0,0 +1,26 @@ +id = 1796 +title = "qemu-img does not accept backing image file path, only file name" +state = "closed" +created_at = "2023-07-28T05:41:49.997Z" +closed_at = "2023-07-28T12:52:51.847Z" +labels = [] +url = "https://gitlab.com/qemu-project/qemu/-/issues/1796" +host-os = "Fedora 37" +host-arch = "x86_64" +qemu-version = "`" +guest-os = "n/a" +guest-arch = "n/a" +description = """In `qemu-img create ... -b <backing_image> ... <snapshot_image>`, <backing_image> cannot be a file path, but must be a file name. <backing_image> and <snapshot_image> are forced to be in the same directory for the command to work.""" +reproduce = """``` +$ mkdir test +$ qemu-img create -f qcow2 test/a.img 1G +... +$ qemu-img create -f qcow2 -b test/a.img -F qcow2 test/a.img.snap +qemu-img: test/a.img.snap: Could not open 'test/test/a.img': No such file or directory +Could not open backing image. +$ qemu-img create -f qcow2 -b a.img -F qcow2 test/a.img.snap +... +$ ls test +a.img a.img.snap +```""" +additional = "n/a" |