2011-03-21 09:58:24 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2010 Isilon Systems, Inc.
|
|
|
|
* Copyright (c) 2010 iX Systems, Inc.
|
|
|
|
* Copyright (c) 2010 Panasas, Inc.
|
2016-05-13 11:02:02 +00:00
|
|
|
* Copyright (c) 2013-2016 Mellanox Technologies, Ltd.
|
2011-03-21 09:58:24 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice unmodified, this list of conditions, and the following
|
|
|
|
* disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2015-10-20 19:08:26 +00:00
|
|
|
*
|
|
|
|
* $FreeBSD$
|
2011-03-21 09:58:24 +00:00
|
|
|
*/
|
|
|
|
#ifndef _LINUX_JIFFIES_H_
|
|
|
|
#define _LINUX_JIFFIES_H_
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
2015-10-19 11:46:48 +00:00
|
|
|
#include <linux/time.h>
|
2011-03-21 09:58:24 +00:00
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/kernel.h>
|
2015-10-19 11:46:48 +00:00
|
|
|
#include <sys/limits.h>
|
2011-03-21 09:58:24 +00:00
|
|
|
|
2014-08-27 13:21:53 +00:00
|
|
|
#define jiffies ticks
|
2015-10-19 11:46:48 +00:00
|
|
|
#define jiffies_64 ticks
|
2014-08-27 13:21:53 +00:00
|
|
|
#define jiffies_to_msecs(x) (((int64_t)(x)) * 1000 / hz)
|
|
|
|
|
2015-10-19 11:46:48 +00:00
|
|
|
#define MAX_JIFFY_OFFSET ((INT_MAX >> 1) - 1)
|
|
|
|
|
2015-03-27 19:08:11 +00:00
|
|
|
#define time_after(a, b) ((int)((b) - (a)) < 0)
|
2011-03-21 09:58:24 +00:00
|
|
|
#define time_before(a, b) time_after(b,a)
|
2015-03-27 19:08:11 +00:00
|
|
|
#define time_after_eq(a, b) ((int)((a) - (b)) >= 0)
|
2011-03-21 09:58:24 +00:00
|
|
|
#define time_before_eq(a, b) time_after_eq(b, a)
|
2015-10-19 11:46:48 +00:00
|
|
|
#define time_in_range(a,b,c) \
|
|
|
|
(time_after_eq(a,b) && time_before_eq(a,c))
|
2011-03-21 09:58:24 +00:00
|
|
|
|
|
|
|
#define HZ hz
|
|
|
|
|
2015-10-19 11:46:48 +00:00
|
|
|
static inline int
|
|
|
|
timespec_to_jiffies(const struct timespec *ts)
|
|
|
|
{
|
|
|
|
u64 result;
|
|
|
|
|
|
|
|
result = ((u64)hz * ts->tv_sec) +
|
|
|
|
(((u64)hz * ts->tv_nsec + NSEC_PER_SEC - 1) / NSEC_PER_SEC);
|
|
|
|
if (result > MAX_JIFFY_OFFSET)
|
|
|
|
result = MAX_JIFFY_OFFSET;
|
|
|
|
|
|
|
|
return ((int)result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2016-05-13 11:02:02 +00:00
|
|
|
msecs_to_jiffies(const u64 msec)
|
2015-10-19 11:46:48 +00:00
|
|
|
{
|
|
|
|
u64 result;
|
|
|
|
|
2016-05-13 11:02:02 +00:00
|
|
|
result = howmany(msec * (u64)hz, 1000ULL);
|
2015-10-19 11:46:48 +00:00
|
|
|
if (result > MAX_JIFFY_OFFSET)
|
|
|
|
result = MAX_JIFFY_OFFSET;
|
|
|
|
|
|
|
|
return ((int)result);
|
|
|
|
}
|
|
|
|
|
2016-05-13 11:02:02 +00:00
|
|
|
static inline int
|
|
|
|
usecs_to_jiffies(const u64 u)
|
|
|
|
{
|
|
|
|
u64 result;
|
|
|
|
|
|
|
|
result = howmany(u * (u64)hz, 1000000ULL);
|
|
|
|
if (result > MAX_JIFFY_OFFSET)
|
|
|
|
result = MAX_JIFFY_OFFSET;
|
|
|
|
|
|
|
|
return ((int)result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u64
|
|
|
|
nsecs_to_jiffies(const u64 n)
|
|
|
|
{
|
|
|
|
return (usecs_to_jiffies(howmany(n, 1000ULL)));
|
|
|
|
}
|
|
|
|
|
2015-10-19 11:46:48 +00:00
|
|
|
static inline u64
|
|
|
|
get_jiffies_64(void)
|
|
|
|
{
|
|
|
|
return ((u64)(unsigned)ticks);
|
|
|
|
}
|
|
|
|
|
2016-03-31 17:11:58 +00:00
|
|
|
static inline int
|
|
|
|
linux_timer_jiffies_until(unsigned long expires)
|
|
|
|
{
|
|
|
|
int delta = expires - jiffies;
|
|
|
|
/* guard against already expired values */
|
|
|
|
if (delta < 1)
|
|
|
|
delta = 1;
|
|
|
|
return (delta);
|
|
|
|
}
|
|
|
|
|
2011-03-21 09:58:24 +00:00
|
|
|
#endif /* _LINUX_JIFFIES_H_ */
|