----- Original Message -----
> From: "Eduardo Habkost" <ehabk...@redhat.com>
> To: "Peter Maydell" <peter.mayd...@linaro.org>
> Cc: "Andreas Färber" <afaer...@suse.de>, qemu-devel@nongnu.org, "Richard 
> Henderson" <r...@twiddle.net>, "Paolo
> Bonzini" <pbonz...@redhat.com>, "Igor Mammedov" <imamm...@redhat.com>
> Sent: Tuesday, June 14, 2016 10:59:08 PM
> Subject: [PULL 10/10] target-i386: Print obsolete warnings if +-features are 
> used
> 
> From: Igor Mammedov <imamm...@redhat.com>
> 
> Signed-off-by: Igor Mammedov <imamm...@redhat.com>
> [ehabkost: Changed to use error_report()]
> Signed-off-by: Eduardo Habkost <ehabk...@redhat.com>
> ---
>  target-i386/cpu.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/target-i386/cpu.c b/target-i386/cpu.c
> index 3665fec..baa3783 100644
> --- a/target-i386/cpu.c
> +++ b/target-i386/cpu.c
> @@ -1980,9 +1980,15 @@ static void x86_cpu_parse_featurestr(CPUState *cs,
> char *features,
>          /* Compatibility syntax: */
>          if (featurestr[0] == '+') {
>              add_flagname_to_bitmaps(featurestr + 1, plus_features,
>              &local_err);
> +            error_report(
> +                "'+%s' is obsolete and will be removed in future, use
> '%s=on'",
> +                featurestr + 1, featurestr + 1);
>              continue;
>          } else if (featurestr[0] == '-') {
>              add_flagname_to_bitmaps(featurestr + 1, minus_features,
>              &local_err);
> +            error_report(
> +                "'-%s' is obsolete and will be removed in future, use
> '%s=off'",
> +                featurestr + 1, featurestr + 1);
>              continue;
>          }

I still disagree with this change.

Paolo

Reply via email to