diff options
author | John Polstra <jdp@FreeBSD.org> | 1999-08-22 00:15:16 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 1999-08-22 00:15:16 +0000 |
commit | a2801b7731259a6562751bcd706d0430113f8834 (patch) | |
tree | a986948f34a11980c0ac2287abbdbb56f132b83f /sys/kern/vfs_subr.c | |
parent | aeea9b369552df330a0fcea5785dfdca199e8e90 (diff) |
Notes
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 21bb57bddbdc..043a5bf78d51 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.216 1999/08/13 10:10:01 phk Exp $ + * $Id: vfs_subr.c,v 1.217 1999/08/13 10:29:21 phk Exp $ */ /* @@ -361,6 +361,48 @@ vfs_getnewfsid(mp) } /* + * Knob to control the precision of file timestamps: + * + * 0 = seconds only; nanoseconds zeroed. + * 1 = seconds and nanoseconds, accurate within 1/HZ. + * 2 = seconds and nanoseconds, truncated to microseconds. + * >=3 = seconds and nanoseconds, maximum precision. + */ +enum { TSP_SEC, TSP_HZ, TSP_USEC, TSP_NSEC }; + +static int timestamp_precision = TSP_SEC; +SYSCTL_INT(_vfs, OID_AUTO, timestamp_precision, CTLFLAG_RW, + ×tamp_precision, 0, ""); + +/* + * Get a current timestamp. + */ +void +vfs_timestamp(tsp) + struct timespec *tsp; +{ + struct timeval tv; + + switch (timestamp_precision) { + case TSP_SEC: + tsp->tv_sec = time_second; + tsp->tv_nsec = 0; + break; + case TSP_HZ: + getnanotime(tsp); + break; + case TSP_USEC: + microtime(&tv); + TIMEVAL_TO_TIMESPEC(&tv, tsp); + break; + case TSP_NSEC: + default: + nanotime(tsp); + break; + } +} + +/* * Set vnode attributes to VNOVAL */ void |