2010-05-18 02:18:00 +04:00
|
|
|
/*****************************************************************************\
|
|
|
|
* Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
|
|
|
|
* Copyright (C) 2007 The Regents of the University of California.
|
|
|
|
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
|
|
|
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
2008-05-26 08:38:26 +04:00
|
|
|
* UCRL-CODE-235197
|
|
|
|
*
|
2010-05-18 02:18:00 +04:00
|
|
|
* This file is part of the SPL, Solaris Porting Layer.
|
|
|
|
* For details, see <http://github.com/behlendorf/spl/>.
|
|
|
|
*
|
|
|
|
* The SPL is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
2008-05-26 08:38:26 +04:00
|
|
|
*
|
2010-05-18 02:18:00 +04:00
|
|
|
* The SPL is distributed in the hope that it will be useful, but WITHOUT
|
2008-05-26 08:38:26 +04:00
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2010-05-18 02:18:00 +04:00
|
|
|
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*****************************************************************************
|
|
|
|
* Solaris Porting Layer (SPL) Time Implementation.
|
|
|
|
\*****************************************************************************/
|
2008-05-26 08:38:26 +04:00
|
|
|
|
2008-03-11 00:38:39 +03:00
|
|
|
#include <sys/sysmacros.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
2008-08-12 02:13:47 +04:00
|
|
|
#ifdef HAVE_MONOTONIC_CLOCK
|
|
|
|
extern unsigned long long monotonic_clock(void);
|
|
|
|
#endif
|
|
|
|
|
2008-04-21 21:29:47 +04:00
|
|
|
#ifdef DEBUG_SUBSYSTEM
|
|
|
|
#undef DEBUG_SUBSYSTEM
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEBUG_SUBSYSTEM S_TIME
|
|
|
|
|
2008-03-11 00:38:39 +03:00
|
|
|
void
|
|
|
|
__gethrestime(timestruc_t *ts)
|
|
|
|
{
|
2008-08-12 02:13:47 +04:00
|
|
|
struct timeval tv;
|
2008-03-14 22:04:41 +03:00
|
|
|
|
2008-08-12 02:13:47 +04:00
|
|
|
do_gettimeofday(&tv);
|
|
|
|
ts->tv_sec = tv.tv_sec;
|
|
|
|
ts->tv_nsec = tv.tv_usec * NSEC_PER_USEC;
|
2008-03-14 22:04:41 +03:00
|
|
|
}
|
2008-08-12 02:13:47 +04:00
|
|
|
EXPORT_SYMBOL(__gethrestime);
|
2008-03-14 22:04:41 +03:00
|
|
|
|
2008-08-12 02:13:47 +04:00
|
|
|
/* Use monotonic_clock() by default. It's faster and is available on older
|
|
|
|
* kernels, but few architectures have them, so we must fallback to
|
|
|
|
* do_posix_clock_monotonic_gettime().
|
2008-03-14 22:04:41 +03:00
|
|
|
*/
|
|
|
|
hrtime_t
|
|
|
|
__gethrtime(void) {
|
2008-08-12 02:13:47 +04:00
|
|
|
#ifdef HAVE_MONOTONIC_CLOCK
|
2008-11-04 03:00:16 +03:00
|
|
|
unsigned long long res = monotonic_clock();
|
2008-08-12 02:13:47 +04:00
|
|
|
|
2008-11-04 03:00:16 +03:00
|
|
|
/* Deal with signed/unsigned mismatch */
|
|
|
|
return (hrtime_t)(res & ~(1ULL << 63));
|
2008-08-12 02:13:47 +04:00
|
|
|
#else
|
2010-05-14 20:31:22 +04:00
|
|
|
struct timespec ts;
|
2008-03-14 22:04:41 +03:00
|
|
|
|
2010-05-14 20:31:22 +04:00
|
|
|
do_posix_clock_monotonic_gettime(&ts);
|
|
|
|
return (hrtime_t)((ts.tv_sec * NSEC_PER_SEC) + ts.tv_nsec);
|
2008-08-12 02:13:47 +04:00
|
|
|
#endif
|
2008-03-14 22:04:41 +03:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__gethrtime);
|
2008-06-28 01:40:11 +04:00
|
|
|
|
2008-08-11 21:20:11 +04:00
|
|
|
/* set_normalized_timespec() API changes
|
|
|
|
* 2.6.0 - 2.6.15: Inline function provided by linux/time.h
|
2008-08-12 02:13:47 +04:00
|
|
|
* 2.6.16 - 2.6.25: Function prototype defined but not exported
|
2008-08-11 21:20:11 +04:00
|
|
|
* 2.6.26 - 2.6.x: Function defined and exported
|
2008-06-28 01:40:11 +04:00
|
|
|
*/
|
2008-08-11 21:20:11 +04:00
|
|
|
#if !defined(HAVE_SET_NORMALIZED_TIMESPEC_INLINE) && \
|
|
|
|
!defined(HAVE_SET_NORMALIZED_TIMESPEC_EXPORT)
|
2008-06-28 01:40:11 +04:00
|
|
|
void
|
|
|
|
set_normalized_timespec(struct timespec *ts, time_t sec, long nsec)
|
|
|
|
{
|
|
|
|
while (nsec >= NSEC_PER_SEC) {
|
|
|
|
nsec -= NSEC_PER_SEC;
|
|
|
|
++sec;
|
|
|
|
}
|
|
|
|
while (nsec < 0) {
|
|
|
|
nsec += NSEC_PER_SEC;
|
|
|
|
--sec;
|
|
|
|
}
|
|
|
|
ts->tv_sec = sec;
|
|
|
|
ts->tv_nsec = nsec;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_normalized_timespec);
|
2008-08-11 21:20:11 +04:00
|
|
|
#endif
|