]> git.proxmox.com Git - mirror_qemu.git/commit - vl.c
QemuOpts: Convert qemu_opts_set() to Error, fix its use
authorMarkus Armbruster <armbru@redhat.com>
Thu, 12 Feb 2015 16:07:34 +0000 (17:07 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Thu, 26 Feb 2015 13:47:49 +0000 (14:47 +0100)
commit79087c782e1549a6f9c8303aafc0b74f4e637756
tree32261ec7ed405e6118a7e618b0e9f0cf8d248e3a
parent39101f2511f6adf1ae4380f8d729dba1213b9d7a
QemuOpts: Convert qemu_opts_set() to Error, fix its use

Return the Error object instead of reporting it with
qerror_report_err().

Change callers that assume the function can't fail to pass
&error_abort, so that should the assumption ever break, it'll break
noisily.

Turns out all callers outside its unit test assume that.  We could
drop the Error ** argument, but that would make the interface less
regular, so don't.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
include/qemu/option.h
net/net.c
tests/test-qemu-opts.c
util/qemu-option.c
vl.c