]> git.proxmox.com Git - mirror_zfs.git/blame - include/spl/sys/timer.h
kernel timer API rework
[mirror_zfs.git] / include / spl / sys / timer.h
CommitLineData
4b393c50 1/*
716154c5
BB
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
BB
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
BB
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 22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
4b393c50 23 */
715f6251 24
09b414e8 25#ifndef _SPL_TIMER_H
5461eefe 26#define _SPL_TIMER_H
f1ca4da6 27
f1b59d26 28#include <linux/module.h>
a9125891 29#include <linux/delay.h>
f1ca4da6 30#include <linux/sched.h>
a9125891 31#include <linux/time.h>
f1ca4da6
BB
32#include <linux/timer.h>
33
5461eefe
BB
34#define lbolt ((clock_t)jiffies)
35#define lbolt64 ((int64_t)get_jiffies_64())
f1ca4da6 36
5461eefe
BB
37#define ddi_get_lbolt() ((clock_t)jiffies)
38#define ddi_get_lbolt64() ((int64_t)get_jiffies_64())
32c6147d 39
5461eefe 40#define ddi_time_before(a, b) (typecheck(clock_t, a) && \
545e9ac0
CC
41 typecheck(clock_t, b) && \
42 ((a) - (b) < 0))
5461eefe
BB
43#define ddi_time_after(a, b) ddi_time_before(b, a)
44#define ddi_time_before_eq(a, b) (!ddi_time_after(a, b))
45#define ddi_time_after_eq(a, b) ddi_time_before_eq(b, a)
545e9ac0 46
5461eefe 47#define ddi_time_before64(a, b) (typecheck(int64_t, a) && \
545e9ac0
CC
48 typecheck(int64_t, b) && \
49 ((a) - (b) < 0))
5461eefe
BB
50#define ddi_time_after64(a, b) ddi_time_before64(b, a)
51#define ddi_time_before_eq64(a, b) (!ddi_time_after64(a, b))
52#define ddi_time_after_eq64(a, b) ddi_time_before_eq64(b, a)
545e9ac0 53
5461eefe 54#define delay(ticks) schedule_timeout_uninterruptible(ticks)
f1ca4da6 55
a9125891
BB
56/* usleep_range() introduced in 2.6.36 */
57#ifndef HAVE_USLEEP_RANGE
58static inline void
59usleep_range(unsigned long min, unsigned long max)
60{
61 unsigned int min_ms = min / USEC_PER_MSEC;
62
63 if (min >= MAX_UDELAY_MS)
64 msleep(min_ms);
65 else
66 udelay(min);
67}
68#endif /* HAVE_USLEEP_RANGE */
69
5461eefe
BB
70#define SEC_TO_TICK(sec) ((sec) * HZ)
71#define MSEC_TO_TICK(ms) msecs_to_jiffies(ms)
72#define USEC_TO_TICK(us) usecs_to_jiffies(us)
73#define NSEC_TO_TICK(ns) usecs_to_jiffies(ns / NSEC_PER_USEC)
f6437b60 74
8b8b44d0
RK
75#ifndef from_timer
76#define from_timer(var, timer, timer_field) \
77 container_of(timer, typeof(*var), timer_field)
78#endif
79
80#ifdef HAVE_KERNEL_TIMER_FUNCTION_TIMER_LIST
81typedef struct timer_list *spl_timer_list_t;
82#else
83typedef unsigned long spl_timer_list_t;
84#endif
85
86#ifndef HAVE_KERNEL_TIMER_SETUP
87
88static inline void
89timer_setup(struct timer_list *timer, void (*func)(spl_timer_list_t), u32 fl)
90{
91#ifdef HAVE_KERNEL_TIMER_LIST_FLAGS
92 (timer)->flags = fl;
93#endif
94 init_timer(timer);
95 setup_timer(timer, func, (spl_timer_list_t)(timer));
96}
97
98#endif /* HAVE_KERNEL_TIMER_SETUP */
99
09b414e8 100#endif /* _SPL_TIMER_H */