Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
John Stultz | 1f5a247 | 2010-12-09 12:02:18 -0800 | [diff] [blame] | 2 | #ifndef _LINUX_TIMERQUEUE_H |
| 3 | #define _LINUX_TIMERQUEUE_H |
| 4 | |
| 5 | #include <linux/rbtree.h> |
| 6 | #include <linux/ktime.h> |
| 7 | |
| 8 | |
| 9 | struct timerqueue_node { |
| 10 | struct rb_node node; |
| 11 | ktime_t expires; |
| 12 | }; |
| 13 | |
| 14 | struct timerqueue_head { |
| 15 | struct rb_root head; |
| 16 | struct timerqueue_node *next; |
| 17 | }; |
| 18 | |
| 19 | |
Thomas Gleixner | c320642 | 2015-04-14 21:08:46 +0000 | [diff] [blame] | 20 | extern bool timerqueue_add(struct timerqueue_head *head, |
| 21 | struct timerqueue_node *node); |
| 22 | extern bool timerqueue_del(struct timerqueue_head *head, |
| 23 | struct timerqueue_node *node); |
John Stultz | 1f5a247 | 2010-12-09 12:02:18 -0800 | [diff] [blame] | 24 | extern struct timerqueue_node *timerqueue_iterate_next( |
| 25 | struct timerqueue_node *node); |
| 26 | |
Thomas Gleixner | 45f7426 | 2010-12-11 12:34:34 +0100 | [diff] [blame] | 27 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 28 | * timerqueue_getnext - Returns the timer with the earliest expiration time |
Thomas Gleixner | 45f7426 | 2010-12-11 12:34:34 +0100 | [diff] [blame] | 29 | * |
| 30 | * @head: head of timerqueue |
| 31 | * |
| 32 | * Returns a pointer to the timer node that has the |
| 33 | * earliest expiration time. |
| 34 | */ |
| 35 | static inline |
| 36 | struct timerqueue_node *timerqueue_getnext(struct timerqueue_head *head) |
| 37 | { |
| 38 | return head->next; |
| 39 | } |
| 40 | |
John Stultz | 1f5a247 | 2010-12-09 12:02:18 -0800 | [diff] [blame] | 41 | static inline void timerqueue_init(struct timerqueue_node *node) |
| 42 | { |
Michel Lespinasse | 4c199a9 | 2012-10-08 16:30:32 -0700 | [diff] [blame] | 43 | RB_CLEAR_NODE(&node->node); |
John Stultz | 1f5a247 | 2010-12-09 12:02:18 -0800 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static inline void timerqueue_init_head(struct timerqueue_head *head) |
| 47 | { |
| 48 | head->head = RB_ROOT; |
| 49 | head->next = NULL; |
| 50 | } |
| 51 | #endif /* _LINUX_TIMERQUEUE_H */ |