From owner-svn-src-head@FreeBSD.ORG Sun Sep 7 20:41:35 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92DAE6BD; Sun, 7 Sep 2014 20:41:35 +0000 (UTC) Received: from mail-lb0-x22e.google.com (mail-lb0-x22e.google.com [IPv6:2a00:1450:4010:c04::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B412819E0; Sun, 7 Sep 2014 20:41:34 +0000 (UTC) Received: by mail-lb0-f174.google.com with SMTP id n15so6231886lbi.33 for ; Sun, 07 Sep 2014 13:41:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=1QNwc+lGGNm6Rd/JNwFuZZdYOn8MwW4BK/oXr0Rf+kQ=; b=PiWgKneCUXU0y9W68yq+bfSFJqFq2OL0O1JKEYrcg7ZPUSM2pCzEzJ/R6ey9+lsoxc Pg/QdSLG38sqoVaq0NF6RsrVGlfZNxBFKugH5HNHizIOlreWeZS7XsMKzyrf9kV27+dW aCYXZbiJQqM0udfDZjP7mRXe9eu7KIXvXUbM/kh8fJJy1FrW3h10uKp5SFgEkrpHZwLL FLyzvx+dvwXH84P6xnEvRnkq6xgQWFjppT6ufAISa+JC4e3MS6ebRa8OsBK4F5lod49x fRmj8IVaVpF97r4CWWYjcMdDCndGtsXx4x/ZLv7Ez5CZzapIT1Ck0C/v0jiDuAo+hMDH JCJA== MIME-Version: 1.0 X-Received: by 10.152.21.98 with SMTP id u2mr3845888lae.80.1410122492424; Sun, 07 Sep 2014 13:41:32 -0700 (PDT) Sender: davide.italiano@gmail.com Received: by 10.25.207.196 with HTTP; Sun, 7 Sep 2014 13:41:32 -0700 (PDT) In-Reply-To: <0DD8929C-983D-49FD-A904-7A4FF9A3D2CB@me.com> References: <201408210901.s7L91gZ7049822@svn.freebsd.org> <0DD8929C-983D-49FD-A904-7A4FF9A3D2CB@me.com> Date: Sun, 7 Sep 2014 13:41:32 -0700 X-Google-Sender-Auth: l1xFkgDREdNX84D0aKPlrEKLgfs Message-ID: Subject: Re: svn commit: r270261 - head/sys/sys From: Davide Italiano To: Rui Paulo Content-Type: text/plain; charset=UTF-8 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:41:35 -0000 On Sun, Sep 7, 2014 at 1:14 PM, Rui Paulo wrote: > On Aug 21, 2014, at 02:01, Davide Italiano wrote: >> >> Author: davide >> Date: Thu Aug 21 09:01:42 2014 >> New Revision: 270261 >> URL: http://svnweb.freebsd.org/changeset/base/270261 >> >> Log: >> Revert r270227. GCC doesn't like the lack of LL suffix, >> so this makes powerpc build failing. >> >> Modified: >> head/sys/sys/time.h >> >> Modified: head/sys/sys/time.h >> ============================================================================== >> --- 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. > It's actually redundant for all the architectures supported. Bruce provided explanation about why as a reply on the original commit. -- Davide "There are no solved problems; there are only problems that are more or less solved" -- Henri Poincare