diff options
| author | Kevin Wolf | 2013-07-11 12:52:34 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2013-10-11 16:50:01 +0200 |
| commit | 326642bc7f0ff95a0c08db527861a9a114a109da (patch) | |
| tree | f0bd11e35ced3f2bc251250e69efff7b9dda28b5 /include | |
| parent | blockdev: 'blockdev-add' QMP command (diff) | |
| download | qemu-326642bc7f0ff95a0c08db527861a9a114a109da.tar.gz qemu-326642bc7f0ff95a0c08db527861a9a114a109da.tar.xz qemu-326642bc7f0ff95a0c08db527861a9a114a109da.zip | |
blockdev: Separate ID generation from DriveInfo creation
blockdev-add shouldn't automatically generate IDs, but will keep most of
the DriveInfo creation code.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/qemu/option.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/option.h b/include/qemu/option.h index 63db4ccb9a..5c0c6dd294 100644 --- a/include/qemu/option.h +++ b/include/qemu/option.h @@ -142,6 +142,7 @@ void qemu_opts_loc_restore(QemuOpts *opts); int qemu_opts_set(QemuOptsList *list, const char *id, const char *name, const char *value); const char *qemu_opts_id(QemuOpts *opts); +void qemu_opts_set_id(QemuOpts *opts, char *id); void qemu_opts_del(QemuOpts *opts); void qemu_opts_validate(QemuOpts *opts, const QemuOptDesc *desc, Error **errp); int qemu_opts_do_parse(QemuOpts *opts, const char *params, const char *firstname); |
