From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40369) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToIy4-0003z5-2s for qemu-devel@nongnu.org; Thu, 27 Dec 2012 14:18:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ToIy2-0001aX-Rc for qemu-devel@nongnu.org; Thu, 27 Dec 2012 14:18:11 -0500 Received: from mx1.redhat.com ([209.132.183.28]:45175) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToIy2-0001aM-K3 for qemu-devel@nongnu.org; Thu, 27 Dec 2012 14:18:10 -0500 Date: Thu, 27 Dec 2012 20:18:06 +0100 From: Igor Mammedov Message-ID: <20121227201806.5cb6aeee@thinkpad.mammed.net> In-Reply-To: <20121227190916.GP18372@otherpad.lan.raisama.net> References: <1356620376-23501-1-git-send-email-imammedo@redhat.com> <1356620376-23501-15-git-send-email-imammedo@redhat.com> <20121227190916.GP18372@otherpad.lan.raisama.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 14/20] target-i386: print depricated warning if xlevel < 0x80000000 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: qemu-devel@nongnu.org, afaerber@suse.de On Thu, 27 Dec 2012 17:09:16 -0200 Eduardo Habkost wrote: > On Thu, Dec 27, 2012 at 03:59:30PM +0100, Igor Mammedov wrote: > > Signed-off-by: Igor Mammedov > > --- > > target-i386/cpu.c | 2 ++ > > 1 files changed, 2 insertions(+), 0 deletions(-) > > > > diff --git a/target-i386/cpu.c b/target-i386/cpu.c > > index 084faeb..0764015 100644 > > --- a/target-i386/cpu.c > > +++ b/target-i386/cpu.c > > @@ -1334,6 +1334,8 @@ static int cpu_x86_parse_featurestr(x86_def_t *x86_cpu_def, char *features, > > goto error; > > } > > if (numvalue < 0x80000000) { > > + fprintf(stderr, "xlevel value shall always be >= 0x80000000" > > + ", fixup will be depricated in future versions\n"); > > Did you mean: "deprecated"? :-) Yep, the same mistake in patch subj. I'll fix it. Thanks! > > > numvalue += 0x80000000; > > } > > x86_cpu_def->xlevel = numvalue; > > -- > > 1.7.1 > > > > -- > Eduardo -- Regards, Igor