From owner-svn-src-head@freebsd.org Sun Mar 12 18:05:31 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2860BD09551 for ; Sun, 12 Mar 2017 18:05:31 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from pmta2.delivery6.ore.mailhop.org (pmta2.delivery6.ore.mailhop.org [54.200.129.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0BC5E11EF for ; Sun, 12 Mar 2017 18:05:30 +0000 (UTC) (envelope-from ian@freebsd.org) X-MHO-User: 613e88e4-074e-11e7-b3c2-c9f38144898e X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information X-Originating-IP: 73.78.92.27 X-Mail-Handler: DuoCircle Outbound SMTP Received: from ilsoft.org (unknown [73.78.92.27]) by outbound2.ore.mailhop.org (Halon) with ESMTPSA id 613e88e4-074e-11e7-b3c2-c9f38144898e; Sun, 12 Mar 2017 18:04:48 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.15.2/8.15.2) with ESMTP id v2CI5SPX001638; Sun, 12 Mar 2017 12:05:28 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1489341928.40576.89.camel@freebsd.org> Subject: Re: svn commit: r315165 - head/sys/kern From: Ian Lepore To: Benjamin Kaduk Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Date: Sun, 12 Mar 2017 12:05:28 -0600 In-Reply-To: References: <201703121743.v2CHhk7c072603@repo.freebsd.org> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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, 12 Mar 2017 18:05:31 -0000 On Sun, 2017-03-12 at 12:45 -0500, Benjamin Kaduk wrote: > On Sun, Mar 12, 2017 at 12:43 PM, Ian Lepore wrote: > > > > > Author: ian > > Date: Sun Mar 12 17:43:45 2017 > > New Revision: 315165 > > URL: https://svnweb.freebsd.org/changeset/base/315165 > > > > Log: > >   Correct the abbreviations for microseconds (us, not ms), and for > > Hz (not > > HZ). > > > > Modified: > >   head/sys/kern/vfs_subr.c > > > > Modified: head/sys/kern/vfs_subr.c > > ============================================================ > > ================== > > --- head/sys/kern/vfs_subr.c    Sun Mar 12 17:41:51 > > 2017        (r315164) > > +++ head/sys/kern/vfs_subr.c    Sun Mar 12 17:43:45 > > 2017        (r315165) > > @@ -767,7 +767,7 @@ enum { TSP_SEC, TSP_HZ, TSP_USEC, TSP_NS > >  static int timestamp_precision = TSP_USEC; > >  SYSCTL_INT(_vfs, OID_AUTO, timestamp_precision, CTLFLAG_RW, > >      ×tamp_precision, 0, "File timestamp precision (0: > > seconds, " > > -    "1: sec + ns accurate to 1/HZ, 2: sec + ns truncated to ms, " > > +    "1: sec + ns accurate to 1/Hz, 2: sec + ns truncated to us, " > > > HZ looks like the kernel configuration parameter here, not the unit. > > -Ben > > > > > >      "3+: sec + ns (max. precision))"); > > > >  /* > > _______________________________________________ Doh!  Now that you mention it, I'm sure you're right. -- Ian