]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/spl/spl-time.c
Imported Upstream version 0.6.2
[mirror_spl-debian.git] / module / spl / spl-time.c
CommitLineData
716154c5
BB
1/*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
3d6af2dd 9 * For details, see <http://zfsonlinux.org/>.
716154c5
BB
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
715f6251 15 *
716154c5 16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Time Implementation.
25\*****************************************************************************/
715f6251 26
ee476682 27#include <sys/sysmacros.h>
28#include <sys/time.h>
ee476682 29
3d061e9d 30#ifdef HAVE_MONOTONIC_CLOCK
31extern unsigned long long monotonic_clock(void);
32#endif
33
937879f1 34#ifdef DEBUG_SUBSYSTEM
35#undef DEBUG_SUBSYSTEM
36#endif
37
38#define DEBUG_SUBSYSTEM S_TIME
39
ee476682 40void
41__gethrestime(timestruc_t *ts)
42{
80093b6f 43 struct timespec tspec = current_kernel_time();
79b31f36 44
80093b6f
AX
45 ts->tv_sec = tspec.tv_sec;
46 ts->tv_nsec = tspec.tv_nsec;
79b31f36 47}
3d061e9d 48EXPORT_SYMBOL(__gethrestime);
79b31f36 49
3d061e9d 50/* Use monotonic_clock() by default. It's faster and is available on older
51 * kernels, but few architectures have them, so we must fallback to
52 * do_posix_clock_monotonic_gettime().
79b31f36 53 */
54hrtime_t
55__gethrtime(void) {
3d061e9d 56#ifdef HAVE_MONOTONIC_CLOCK
b07335c1 57 unsigned long long res = monotonic_clock();
3d061e9d 58
b07335c1 59 /* Deal with signed/unsigned mismatch */
60 return (hrtime_t)(res & ~(1ULL << 63));
3d061e9d 61#else
6020190e 62 struct timespec ts;
79b31f36 63
6020190e 64 do_posix_clock_monotonic_gettime(&ts);
8a1c9a02 65 return (((hrtime_t)ts.tv_sec * NSEC_PER_SEC) + ts.tv_nsec);
3d061e9d 66#endif
79b31f36 67}
68EXPORT_SYMBOL(__gethrtime);
ff449ac4 69
6a6cafbe 70/* set_normalized_timespec() API changes
71 * 2.6.0 - 2.6.15: Inline function provided by linux/time.h
3d061e9d 72 * 2.6.16 - 2.6.25: Function prototype defined but not exported
6a6cafbe 73 * 2.6.26 - 2.6.x: Function defined and exported
ff449ac4 74 */
6a6cafbe 75#if !defined(HAVE_SET_NORMALIZED_TIMESPEC_INLINE) && \
76 !defined(HAVE_SET_NORMALIZED_TIMESPEC_EXPORT)
ff449ac4 77void
78set_normalized_timespec(struct timespec *ts, time_t sec, long nsec)
79{
80 while (nsec >= NSEC_PER_SEC) {
81 nsec -= NSEC_PER_SEC;
82 ++sec;
83 }
84 while (nsec < 0) {
85 nsec += NSEC_PER_SEC;
86 --sec;
87 }
88 ts->tv_sec = sec;
89 ts->tv_nsec = nsec;
90}
91EXPORT_SYMBOL(set_normalized_timespec);
6a6cafbe 92#endif