diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-12-11 06:34:34 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-12-11 06:34:34 -0500 |
commit | 45f74264e18449cf3c93cccaf098ee6e9524ab78 (patch) | |
tree | d5208559825ea479dce08df7658f0590aabea43b | |
parent | b007c389d3e09b823eccda1503390fa2a9adca0d (diff) |
timerqueue: Make timerqueue_getnext() static inline
No point in calling a function just to dereference a pointer.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: John Stultz <john.stultz@linaro.org>
-rw-r--r-- | include/linux/timerqueue.h | 15 | ||||
-rw-r--r-- | lib/timerqueue.c | 14 |
2 files changed, 14 insertions, 15 deletions
diff --git a/include/linux/timerqueue.h b/include/linux/timerqueue.h index 406b103894bd..d24aabaca474 100644 --- a/include/linux/timerqueue.h +++ b/include/linux/timerqueue.h | |||
@@ -20,10 +20,23 @@ extern void timerqueue_add(struct timerqueue_head *head, | |||
20 | struct timerqueue_node *node); | 20 | struct timerqueue_node *node); |
21 | extern void timerqueue_del(struct timerqueue_head *head, | 21 | extern void timerqueue_del(struct timerqueue_head *head, |
22 | struct timerqueue_node *node); | 22 | struct timerqueue_node *node); |
23 | extern struct timerqueue_node *timerqueue_getnext(struct timerqueue_head *head); | ||
24 | extern struct timerqueue_node *timerqueue_iterate_next( | 23 | extern struct timerqueue_node *timerqueue_iterate_next( |
25 | struct timerqueue_node *node); | 24 | struct timerqueue_node *node); |
26 | 25 | ||
26 | /** | ||
27 | * timerqueue_getnext - Returns the timer with the earlies expiration time | ||
28 | * | ||
29 | * @head: head of timerqueue | ||
30 | * | ||
31 | * Returns a pointer to the timer node that has the | ||
32 | * earliest expiration time. | ||
33 | */ | ||
34 | static inline | ||
35 | struct timerqueue_node *timerqueue_getnext(struct timerqueue_head *head) | ||
36 | { | ||
37 | return head->next; | ||
38 | } | ||
39 | |||
27 | static inline void timerqueue_init(struct timerqueue_node *node) | 40 | static inline void timerqueue_init(struct timerqueue_node *node) |
28 | { | 41 | { |
29 | RB_CLEAR_NODE(&node->node); | 42 | RB_CLEAR_NODE(&node->node); |
diff --git a/lib/timerqueue.c b/lib/timerqueue.c index 444b0934af92..e3a1050e6820 100644 --- a/lib/timerqueue.c +++ b/lib/timerqueue.c | |||
@@ -85,20 +85,6 @@ void timerqueue_del(struct timerqueue_head *head, struct timerqueue_node *node) | |||
85 | EXPORT_SYMBOL_GPL(timerqueue_del); | 85 | EXPORT_SYMBOL_GPL(timerqueue_del); |
86 | 86 | ||
87 | /** | 87 | /** |
88 | * timerqueue_getnext - Returns the timer with the earlies expiration time | ||
89 | * | ||
90 | * @head: head of timerqueue | ||
91 | * | ||
92 | * Returns a pointer to the timer node that has the | ||
93 | * earliest expiration time. | ||
94 | */ | ||
95 | struct timerqueue_node *timerqueue_getnext(struct timerqueue_head *head) | ||
96 | { | ||
97 | return head->next; | ||
98 | } | ||
99 | EXPORT_SYMBOL_GPL(timerqueue_getnext); | ||
100 | |||
101 | /** | ||
102 | * timerqueue_iterate_next - Returns the timer after the provided timer | 88 | * timerqueue_iterate_next - Returns the timer after the provided timer |
103 | * | 89 | * |
104 | * @node: Pointer to a timer. | 90 | * @node: Pointer to a timer. |