]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/posix-timers.h
objtool, x86: Add several functions and files to the objtool whitelist
[mirror_ubuntu-artful-kernel.git] / include / linux / posix-timers.h
CommitLineData
1da177e4
LT
1#ifndef _linux_POSIX_TIMERS_H
2#define _linux_POSIX_TIMERS_H
3
4#include <linux/spinlock.h>
5#include <linux/list.h>
6#include <linux/sched.h>
f1f1d5eb 7#include <linux/timex.h>
9a7adcf5 8#include <linux/alarmtimer.h>
1da177e4 9
55ccb616 10
1da177e4
LT
11struct cpu_timer_list {
12 struct list_head entry;
ebd7e7fc 13 u64 expires, incr;
1da177e4
LT
14 struct task_struct *task;
15 int firing;
16};
17
81e294cb
RC
18/*
19 * Bit fields within a clockid:
20 *
21 * The most significant 29 bits hold either a pid or a file descriptor.
22 *
23 * Bit 2 indicates whether a cpu clock refers to a thread or a process.
24 *
25 * Bits 1 and 0 give the type: PROF=0, VIRT=1, SCHED=2, or FD=3.
26 *
27 * A clockid is invalid if bits 2, 1, and 0 are all set.
28 */
1da177e4
LT
29#define CPUCLOCK_PID(clock) ((pid_t) ~((clock) >> 3))
30#define CPUCLOCK_PERTHREAD(clock) \
31 (((clock) & (clockid_t) CPUCLOCK_PERTHREAD_MASK) != 0)
0606f422 32
1da177e4
LT
33#define CPUCLOCK_PERTHREAD_MASK 4
34#define CPUCLOCK_WHICH(clock) ((clock) & (clockid_t) CPUCLOCK_CLOCK_MASK)
35#define CPUCLOCK_CLOCK_MASK 3
36#define CPUCLOCK_PROF 0
37#define CPUCLOCK_VIRT 1
38#define CPUCLOCK_SCHED 2
39#define CPUCLOCK_MAX 3
81e294cb
RC
40#define CLOCKFD CPUCLOCK_MAX
41#define CLOCKFD_MASK (CPUCLOCK_PERTHREAD_MASK|CPUCLOCK_CLOCK_MASK)
1da177e4
LT
42
43#define MAKE_PROCESS_CPUCLOCK(pid, clock) \
44 ((~(clockid_t) (pid) << 3) | (clockid_t) (clock))
45#define MAKE_THREAD_CPUCLOCK(tid, clock) \
46 MAKE_PROCESS_CPUCLOCK((tid), (clock) | CPUCLOCK_PERTHREAD_MASK)
47
0606f422
RC
48#define FD_TO_CLOCKID(fd) ((~(clockid_t) (fd) << 3) | CLOCKFD)
49#define CLOCKID_TO_FD(clk) ((unsigned int) ~((clk) >> 3))
50
1da177e4
LT
51/* POSIX.1b interval timer structure. */
52struct k_itimer {
53 struct list_head list; /* free/ allocate list */
5ed67f05 54 struct hlist_node t_hash;
1da177e4
LT
55 spinlock_t it_lock;
56 clockid_t it_clock; /* which timer type */
57 timer_t it_id; /* timer id */
58 int it_overrun; /* overrun on pending signal */
59 int it_overrun_last; /* overrun on last delivered signal */
2a698971 60 int it_requeue_pending; /* waiting to requeue this timer */
1da177e4
LT
61#define REQUEUE_PENDING 1
62 int it_sigev_notify; /* notify word of sigevent struct */
27af4245
ON
63 struct signal_struct *it_signal;
64 union {
65 struct pid *it_pid; /* pid of process to send signal to */
66 struct task_struct *it_process; /* for clock_nanosleep */
67 };
1da177e4
LT
68 struct sigqueue *sigq; /* signal queue entry. */
69 union {
70 struct {
becf8b5d
TG
71 struct hrtimer timer;
72 ktime_t interval;
1da177e4
LT
73 } real;
74 struct cpu_timer_list cpu;
75 struct {
76 unsigned int clock;
77 unsigned int node;
78 unsigned long incr;
79 unsigned long expires;
80 } mmtimer;
9e264762
JS
81 struct {
82 struct alarm alarmtimer;
83 ktime_t interval;
84 } alarm;
8af08871 85 struct rcu_head rcu;
1da177e4
LT
86 } it;
87};
88
1da177e4 89struct k_clock {
d2e3e0ca 90 int (*clock_getres) (const clockid_t which_clock, struct timespec64 *tp);
1e6d7679 91 int (*clock_set) (const clockid_t which_clock,
0fe6afe3 92 const struct timespec64 *tp);
3c9c12f4 93 int (*clock_get) (const clockid_t which_clock, struct timespec64 *tp);
f1f1d5eb 94 int (*clock_adj) (const clockid_t which_clock, struct timex *tx);
1da177e4 95 int (*timer_create) (struct k_itimer *timer);
2a698971 96 int (*nsleep) (const clockid_t which_clock, int flags,
ad196384 97 struct timespec64 *, struct timespec __user *);
1711ef38 98 long (*nsleep_restart) (struct restart_block *restart_block);
5f252b32
DD
99 int (*timer_set) (struct k_itimer *timr, int flags,
100 struct itimerspec64 *new_setting,
101 struct itimerspec64 *old_setting);
102 int (*timer_del) (struct k_itimer *timr);
1da177e4 103#define TIMER_RETRY 1
5f252b32
DD
104 void (*timer_get) (struct k_itimer *timr,
105 struct itimerspec64 *cur_setting);
1da177e4
LT
106};
107
1976945e 108extern struct k_clock clock_posix_cpu;
0606f422 109extern struct k_clock clock_posix_dynamic;
1976945e 110
52708737 111void posix_timers_register_clock(const clockid_t clock_id, struct k_clock *new_clock);
1da177e4 112
1da177e4
LT
113/* function to call to trigger timer event */
114int posix_timer_event(struct k_itimer *timr, int si_private);
115
2a698971
TG
116void posix_cpu_timer_schedule(struct k_itimer *timer);
117
118void run_posix_cpu_timers(struct task_struct *task);
119void posix_cpu_timers_exit(struct task_struct *task);
120void posix_cpu_timers_exit_group(struct task_struct *task);
2a698971 121void set_process_cpu_timer(struct task_struct *task, unsigned int clock_idx,
858cf3a8 122 u64 *newval, u64 *oldval);
1da177e4 123
1711ef38
TA
124long clock_nanosleep_restart(struct restart_block *restart_block);
125
5ab46b34 126void update_rlimit_cpu(struct task_struct *task, unsigned long rlim_new);
f06febc9 127
1da177e4 128#endif