Re: [Qemu-devel] [PATCH V12 2/4] Create four QemuOptsList related functions

2013-03-21 Thread Markus Armbruster
Dong Xu Wang writes: > This patch will create 4 functions, count_opts_list, qemu_opts_append, > qemu_opts_free and qemu_opts_print_help, they will be used in following > commits. > > Signed-off-by: Dong Xu Wang > --- > v11->v12: > 1) renmae functions. > 2) fix loop styles and code styles. > 3) q

[Qemu-devel] [PATCH V12 2/4] Create four QemuOptsList related functions

2013-02-28 Thread Dong Xu Wang
This patch will create 4 functions, count_opts_list, qemu_opts_append, qemu_opts_free and qemu_opts_print_help, they will be used in following commits. Signed-off-by: Dong Xu Wang --- v11->v12: 1) renmae functions. 2) fix loop styles and code styles. 3) qemu_opts_apend will not return NULL now. 4