mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
QemuOpts: Drop qemu_opt_set(), rename qemu_opt_set_err(), fix use
qemu_opt_set() is a wrapper around qemu_opt_set() that reports the error with qerror_report_err(). Most of its users assume the function can't fail. Make them use qemu_opt_set_err() with &error_abort, so that should the assumption ever break, it'll break noisily. Just two users remain, in util/qemu-config.c. Switch them to qemu_opt_set_err() as well, then rename qemu_opt_set_err() to qemu_opt_set(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
6be4194b92
commit
f43e47dbf6
18 changed files with 131 additions and 131 deletions
5
block.c
5
block.c
|
@ -5660,8 +5660,7 @@ void bdrv_img_create(const char *filename, const char *fmt,
|
|||
}
|
||||
|
||||
if (base_filename) {
|
||||
qemu_opt_set_err(opts, BLOCK_OPT_BACKING_FILE, base_filename,
|
||||
&local_err);
|
||||
qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
|
||||
if (local_err) {
|
||||
error_setg(errp, "Backing file not supported for file format '%s'",
|
||||
fmt);
|
||||
|
@ -5670,7 +5669,7 @@ void bdrv_img_create(const char *filename, const char *fmt,
|
|||
}
|
||||
|
||||
if (base_fmt) {
|
||||
qemu_opt_set_err(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
|
||||
qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
|
||||
if (local_err) {
|
||||
error_setg(errp, "Backing file format not supported for file "
|
||||
"format '%s'", fmt);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue