Re: [Qemu-devel] [PATCH v2 5/6] qemu-option: Remove qemu_opts_create_nofail

2013-12-10 Thread Peter Crosthwaite
On Thu, Dec 5, 2013 at 8:11 PM, Markus Armbruster wrote: > Peter Crosthwaite writes: > >> This is a boiler-plate _nofail variant of qemu_opts_create. Remove and >> use error_abort in call sites. >> >> null/0 arguments needs to be added for the id and fail_if_exists fields >> in affected callsites

Re: [Qemu-devel] [PATCH v2 5/6] qemu-option: Remove qemu_opts_create_nofail

2013-12-05 Thread Markus Armbruster
Peter Crosthwaite writes: > This is a boiler-plate _nofail variant of qemu_opts_create. Remove and > use error_abort in call sites. > > null/0 arguments needs to be added for the id and fail_if_exists fields > in affected callsites due to argument inconsistency between the normal and > no_fail va

[Qemu-devel] [PATCH v2 5/6] qemu-option: Remove qemu_opts_create_nofail

2013-12-04 Thread Peter Crosthwaite
This is a boiler-plate _nofail variant of qemu_opts_create. Remove and use error_abort in call sites. null/0 arguments needs to be added for the id and fail_if_exists fields in affected callsites due to argument inconsistency between the normal and no_fail variants. Signed-off-by: Peter Crosthwai