From owner-svn-src-head@FreeBSD.ORG Sun Sep 7 20:14:34 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 308A2EB9; Sun, 7 Sep 2014 20:14:34 +0000 (UTC) Received: from st11p02mm-asmtp002.mac.com (st11p02mm-asmtp002.mac.com [17.172.220.237]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (Client CN "smtp.me.com", Issuer "VeriSign Class 3 Extended Validation SSL SGC CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0104215D3; Sun, 7 Sep 2014 20:14:33 +0000 (UTC) Received: from fukuyama.hsd1.ca.comcast.net (unknown [73.162.13.215]) by st11p02mm-asmtp002.mac.com (Oracle Communications Messaging Server 7u4-27.10(7.0.4.27.9) 64bit (built Jun 6 2014)) with ESMTPSA id <0NBJ00L8HS7OQE10@st11p02mm-asmtp002.mac.com>; Sun, 07 Sep 2014 20:14:15 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.12.52,1.0.27,0.0.0000 definitions=2014-09-07_03:2014-09-05,2014-09-07,1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=7.0.1-1402240000 definitions=main-1409070227 Content-type: text/plain; charset=us-ascii MIME-version: 1.0 (Mac OS X Mail 8.0 \(1973.6\)) Subject: Re: svn commit: r270261 - head/sys/sys From: Rui Paulo In-reply-to: <201408210901.s7L91gZ7049822@svn.freebsd.org> Date: Sun, 07 Sep 2014 13:14:12 -0700 Content-transfer-encoding: quoted-printable Message-id: <0DD8929C-983D-49FD-A904-7A4FF9A3D2CB@me.com> References: <201408210901.s7L91gZ7049822@svn.freebsd.org> To: Davide Italiano X-Mailer: Apple Mail (2.1973.6) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sun, 07 Sep 2014 20:14:34 -0000 On Aug 21, 2014, at 02:01, Davide Italiano wrote: >=20 > Author: davide > Date: Thu Aug 21 09:01:42 2014 > New Revision: 270261 > URL: http://svnweb.freebsd.org/changeset/base/270261 >=20 > Log: > Revert r270227. GCC doesn't like the lack of LL suffix, > so this makes powerpc build failing. >=20 > Modified: > head/sys/sys/time.h >=20 > Modified: head/sys/sys/time.h > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/sys/sys/time.h Thu Aug 21 08:25:46 2014 = (r270260) > +++ head/sys/sys/time.h Thu Aug 21 09:01:42 2014 = (r270261) > @@ -129,7 +129,7 @@ bintime_shift(struct bintime *_bt, int _ > #define SBT_1MS (SBT_1S / 1000) > #define SBT_1US (SBT_1S / 1000000) > #define SBT_1NS (SBT_1S / 1000000000) > -#define SBT_MAX 0x7fffffffffffffff > +#define SBT_MAX 0x7fffffffffffffffLL I also think this is more correct. -- Rui Paulo