From owner-svn-src-head@FreeBSD.ORG Tue Sep 25 15:17:09 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3973E106566C; Tue, 25 Sep 2012 15:17:09 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 0521F8FC0C; Tue, 25 Sep 2012 15:17:09 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 450A0B944; Tue, 25 Sep 2012 11:17:08 -0400 (EDT) From: John Baldwin To: Dimitry Andric Date: Tue, 25 Sep 2012 08:07:46 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p17; KDE/4.5.5; amd64; ; ) References: <201209211031.q8LAVKVC014601@svn.freebsd.org> In-Reply-To: <201209211031.q8LAVKVC014601@svn.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201209250807.46163.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 25 Sep 2012 11:17:08 -0400 (EDT) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r240773 - in head/sys: amd64/amd64 i386/i386 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 15:17:09 -0000 On Friday, September 21, 2012 6:31:20 am Dimitry Andric wrote: > Author: dim > Date: Fri Sep 21 10:31:19 2012 > New Revision: 240773 > URL: http://svn.freebsd.org/changeset/base/240773 > > Log: > After r205013, amd64 and i386 CPU family and model IDs were printed out > in hexadecimal, but without any 0x prefix, which can be very misleading. > > MFC after: 3 days This overflows 80 columns now where it did not before. Intel manuals tend to use a trailing 'h' suffix rather than an '0x' prefix. (It is common to see text like '06_2Ah'.) The prefix was previously left off on purpose due to the 80 colummns overflow. -- John Baldwin