From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49854) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCvQv-0008CC-PJ for qemu-devel@nongnu.org; Tue, 14 Jun 2016 16:59:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCvQt-0007j6-4D for qemu-devel@nongnu.org; Tue, 14 Jun 2016 16:59:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43497) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCvQs-0007j2-UL for qemu-devel@nongnu.org; Tue, 14 Jun 2016 16:59:35 -0400 From: Eduardo Habkost Date: Tue, 14 Jun 2016 17:59:08 -0300 Message-Id: <1465937948-548-11-git-send-email-ehabkost@redhat.com> In-Reply-To: <1465937948-548-1-git-send-email-ehabkost@redhat.com> References: <1465937948-548-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PULL 10/10] target-i386: Print obsolete warnings if +-features are used List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= , qemu-devel@nongnu.org, Richard Henderson , Paolo Bonzini , Igor Mammedov From: Igor Mammedov Signed-off-by: Igor Mammedov [ehabkost: Changed to use error_report()] Signed-off-by: Eduardo Habkost --- 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; } -- 2.5.5