blob: 41f4bdadf6344eff10e4102d4491bf953d74e81a [file] [log] [blame]
Stefan Richter9f6d3c42010-07-22 11:58:05 +02001struct list {
Stefan Richter92c16f72010-07-22 11:58:05 +02002 struct list *next, *prev;
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003};
4
5static inline void
6list_init(struct list *list)
7{
Stefan Richter92c16f72010-07-22 11:58:05 +02008 list->next = list;
9 list->prev = list;
Stefan Richter9f6d3c42010-07-22 11:58:05 +020010}
11
12static inline int
13list_empty(struct list *list)
14{
Stefan Richter92c16f72010-07-22 11:58:05 +020015 return list->next == list;
Stefan Richter9f6d3c42010-07-22 11:58:05 +020016}
17
18static inline void
19list_insert(struct list *link, struct list *new_link)
20{
Stefan Richter92c16f72010-07-22 11:58:05 +020021 new_link->prev = link->prev;
22 new_link->next = link;
23 new_link->prev->next = new_link;
24 new_link->next->prev = new_link;
Stefan Richter9f6d3c42010-07-22 11:58:05 +020025}
26
27static inline void
28list_append(struct list *list, struct list *new_link)
29{
Stefan Richter92c16f72010-07-22 11:58:05 +020030 list_insert((struct list *)list, new_link);
Stefan Richter9f6d3c42010-07-22 11:58:05 +020031}
32
33static inline void
34list_prepend(struct list *list, struct list *new_link)
35{
Stefan Richter92c16f72010-07-22 11:58:05 +020036 list_insert(list->next, new_link);
Stefan Richter9f6d3c42010-07-22 11:58:05 +020037}
38
39static inline void
40list_remove(struct list *link)
41{
Stefan Richter92c16f72010-07-22 11:58:05 +020042 link->prev->next = link->next;
43 link->next->prev = link->prev;
Stefan Richter9f6d3c42010-07-22 11:58:05 +020044}
45
46#define list_entry(link, type, member) \
47 ((type *)((char *)(link)-(unsigned long)(&((type *)0)->member)))
48
49#define list_head(list, type, member) \
50 list_entry((list)->next, type, member)
51
52#define list_tail(list, type, member) \
53 list_entry((list)->prev, type, member)
54
55#define list_next(elm, member) \
56 list_entry((elm)->member.next, typeof(*elm), member)
57
58#define list_for_each_entry(pos, list, member) \
59 for (pos = list_head(list, typeof(*pos), member); \
60 &pos->member != (list); \
61 pos = list_next(pos, member))
62