diff options
Diffstat (limited to 'include/linux/timer.h')
-rw-r--r-- | include/linux/timer.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/include/linux/timer.h b/include/linux/timer.h index 979fefdeb862..d4ba79248a27 100644 --- a/include/linux/timer.h +++ b/include/linux/timer.h | |||
@@ -4,6 +4,7 @@ | |||
4 | #include <linux/list.h> | 4 | #include <linux/list.h> |
5 | #include <linux/ktime.h> | 5 | #include <linux/ktime.h> |
6 | #include <linux/stddef.h> | 6 | #include <linux/stddef.h> |
7 | #include <linux/debugobjects.h> | ||
7 | 8 | ||
8 | struct tvec_base; | 9 | struct tvec_base; |
9 | 10 | ||
@@ -25,6 +26,7 @@ struct timer_list { | |||
25 | extern struct tvec_base boot_tvec_bases; | 26 | extern struct tvec_base boot_tvec_bases; |
26 | 27 | ||
27 | #define TIMER_INITIALIZER(_function, _expires, _data) { \ | 28 | #define TIMER_INITIALIZER(_function, _expires, _data) { \ |
29 | .entry = { .prev = TIMER_ENTRY_STATIC }, \ | ||
28 | .function = (_function), \ | 30 | .function = (_function), \ |
29 | .expires = (_expires), \ | 31 | .expires = (_expires), \ |
30 | .data = (_data), \ | 32 | .data = (_data), \ |
@@ -38,6 +40,17 @@ extern struct tvec_base boot_tvec_bases; | |||
38 | void init_timer(struct timer_list *timer); | 40 | void init_timer(struct timer_list *timer); |
39 | void init_timer_deferrable(struct timer_list *timer); | 41 | void init_timer_deferrable(struct timer_list *timer); |
40 | 42 | ||
43 | #ifdef CONFIG_DEBUG_OBJECTS_TIMERS | ||
44 | extern void init_timer_on_stack(struct timer_list *timer); | ||
45 | extern void destroy_timer_on_stack(struct timer_list *timer); | ||
46 | #else | ||
47 | static inline void destroy_timer_on_stack(struct timer_list *timer) { } | ||
48 | static inline void init_timer_on_stack(struct timer_list *timer) | ||
49 | { | ||
50 | init_timer(timer); | ||
51 | } | ||
52 | #endif | ||
53 | |||
41 | static inline void setup_timer(struct timer_list * timer, | 54 | static inline void setup_timer(struct timer_list * timer, |
42 | void (*function)(unsigned long), | 55 | void (*function)(unsigned long), |
43 | unsigned long data) | 56 | unsigned long data) |
@@ -47,6 +60,15 @@ static inline void setup_timer(struct timer_list * timer, | |||
47 | init_timer(timer); | 60 | init_timer(timer); |
48 | } | 61 | } |
49 | 62 | ||
63 | static inline void setup_timer_on_stack(struct timer_list *timer, | ||
64 | void (*function)(unsigned long), | ||
65 | unsigned long data) | ||
66 | { | ||
67 | timer->function = function; | ||
68 | timer->data = data; | ||
69 | init_timer_on_stack(timer); | ||
70 | } | ||
71 | |||
50 | /** | 72 | /** |
51 | * timer_pending - is a timer pending? | 73 | * timer_pending - is a timer pending? |
52 | * @timer: the timer in question | 74 | * @timer: the timer in question |
@@ -164,5 +186,4 @@ unsigned long __round_jiffies_relative(unsigned long j, int cpu); | |||
164 | unsigned long round_jiffies(unsigned long j); | 186 | unsigned long round_jiffies(unsigned long j); |
165 | unsigned long round_jiffies_relative(unsigned long j); | 187 | unsigned long round_jiffies_relative(unsigned long j); |
166 | 188 | ||
167 | |||
168 | #endif | 189 | #endif |