svn commit: r315165 - head/sys/kern

Benjamin Kaduk bjkfbsd at gmail.com
Sun Mar 12 17:45:22 UTC 2017


On Sun, Mar 12, 2017 at 12:43 PM, Ian Lepore <ian at freebsd.org> 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,
>      &timestamp_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))");
>
>  /*
> _______________________________________________
> svn-src-all at freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/svn-src-all
> To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
>


More information about the svn-src-head mailing list