Re: [Qemu-devel] [PATCH v2 1/6] qemu-option: Introduce has_help_option()

2014-02-20 Thread Jeff Cody
On Thu, Feb 20, 2014 at 03:57:18PM +0100, Kevin Wolf wrote: > This new function checks if any help option ('help' or '?') occurs > anywhere in an option string, so that things like 'cluster_size=4k,help' > are recognised. > > Signed-off-by: Kevin Wolf Reviewed-by: Jeff Cody > --- > include/qe

Re: [Qemu-devel] [PATCH v2 1/6] qemu-option: Introduce has_help_option()

2014-02-20 Thread Eric Blake
On 02/20/2014 07:57 AM, Kevin Wolf wrote: > This new function checks if any help option ('help' or '?') occurs > anywhere in an option string, so that things like 'cluster_size=4k,help' > are recognised. > > Signed-off-by: Kevin Wolf > --- > include/qemu/option.h | 1 + > util/qemu-option.c

[Qemu-devel] [PATCH v2 1/6] qemu-option: Introduce has_help_option()

2014-02-20 Thread Kevin Wolf
This new function checks if any help option ('help' or '?') occurs anywhere in an option string, so that things like 'cluster_size=4k,help' are recognised. Signed-off-by: Kevin Wolf --- include/qemu/option.h | 1 + util/qemu-option.c| 24 2 files changed, 25 inserti