summary refs log tree commit diff stats
path: root/gitlab/issues/target_missing/host_missing/accel_missing/1239.toml
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-05-21 21:21:26 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-05-21 21:21:26 +0200
commit4b927bc37359dec23f67d3427fc982945f24f404 (patch)
tree245449ef9146942dc7fffd0235b48b7e70a00bf2 /gitlab/issues/target_missing/host_missing/accel_missing/1239.toml
parentaa8bd79cec7bf6790ddb01d156c2ef2201abbaab (diff)
downloadqemu-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/1239.toml')
-rw-r--r--gitlab/issues/target_missing/host_missing/accel_missing/1239.toml44
1 files changed, 44 insertions, 0 deletions
diff --git a/gitlab/issues/target_missing/host_missing/accel_missing/1239.toml b/gitlab/issues/target_missing/host_missing/accel_missing/1239.toml
new file mode 100644
index 000000000..ba231563d
--- /dev/null
+++ b/gitlab/issues/target_missing/host_missing/accel_missing/1239.toml
@@ -0,0 +1,44 @@
+id = 1239
+title = "The help document of qemu-img misses some options"
+state = "opened"
+created_at = "2022-10-02T16:25:39.971Z"
+closed_at = "n/a"
+labels = ["CLI", "Storage", "workflow::Patch available"]
+url = "https://gitlab.com/qemu-project/qemu/-/issues/1239"
+host-os = "Ubuntu 20.04"
+host-arch = "x86"
+qemu-version = "version 7.1.50 (v7.1.0-524-gdbc4f48b5a)"
+guest-os = "n/a"
+guest-arch = "n/a"
+description = """The "--help" option of qemu-img misses the option "skip-broken-bitmaps" for convert , "image-opts" for bench, "object" for dd and "force-share" for measure."""
+reproduce = """1. For the option "skip-broken-bitmaps", the following code appears during option parsing for convert and modifies the skip_broken in qemu-img.c:2377-2379.
+
+```
+        case OPTION_SKIP_BROKEN:
+            skip_broken = true;
+            break;
+```
+
+2. For the option "image-opts", the following code appears during option parsing for bench and modifies the image_opts in qemu-img.c:4511-4513.
+
+```
+        case OPTION_IMAGE_OPTS:
+            image_opts = true;
+            break;
+```
+3. For the option "object", the following code appears during option parsing for dd and calls the user_creatable_process_cmdline in qemu-img.c:4980-4982.
+
+```
+        case OPTION_OBJECT:
+            user_creatable_process_cmdline(optarg);
+            break;
+```
+4. For the option "force-share", the following code appears during option parsing for measure and modifies the force_share in qemu-img.c:5237-5239.
+```
+        case 'U':
+            force_share = true;
+            break;
+```"""
+additional = """But they do not appear in the document provided by "--help".
+
+It may prevent users from using the relevant function."""