Blame view

tools/firewire/list.h 1.29 KB
9f6d3c4b7   Stefan Richter   tools/firewire: a...
1
  struct list {
92c16f7e9   Stefan Richter   tools/firewire: n...
2
  	struct list *next, *prev;
9f6d3c4b7   Stefan Richter   tools/firewire: a...
3
4
5
6
7
  };
  
  static inline void
  list_init(struct list *list)
  {
92c16f7e9   Stefan Richter   tools/firewire: n...
8
9
  	list->next = list;
  	list->prev = list;
9f6d3c4b7   Stefan Richter   tools/firewire: a...
10
11
12
13
14
  }
  
  static inline int
  list_empty(struct list *list)
  {
92c16f7e9   Stefan Richter   tools/firewire: n...
15
  	return list->next == list;
9f6d3c4b7   Stefan Richter   tools/firewire: a...
16
17
18
19
20
  }
  
  static inline void
  list_insert(struct list *link, struct list *new_link)
  {
92c16f7e9   Stefan Richter   tools/firewire: n...
21
22
23
24
  	new_link->prev		= link->prev;
  	new_link->next		= link;
  	new_link->prev->next	= new_link;
  	new_link->next->prev	= new_link;
9f6d3c4b7   Stefan Richter   tools/firewire: a...
25
26
27
28
29
  }
  
  static inline void
  list_append(struct list *list, struct list *new_link)
  {
92c16f7e9   Stefan Richter   tools/firewire: n...
30
  	list_insert((struct list *)list, new_link);
9f6d3c4b7   Stefan Richter   tools/firewire: a...
31
32
33
34
35
  }
  
  static inline void
  list_prepend(struct list *list, struct list *new_link)
  {
92c16f7e9   Stefan Richter   tools/firewire: n...
36
  	list_insert(list->next, new_link);
9f6d3c4b7   Stefan Richter   tools/firewire: a...
37
38
39
40
41
  }
  
  static inline void
  list_remove(struct list *link)
  {
92c16f7e9   Stefan Richter   tools/firewire: n...
42
43
  	link->prev->next = link->next;
  	link->next->prev = link->prev;
9f6d3c4b7   Stefan Richter   tools/firewire: a...
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  }
  
  #define list_entry(link, type, member) \
  	((type *)((char *)(link)-(unsigned long)(&((type *)0)->member)))
  
  #define list_head(list, type, member)		\
  	list_entry((list)->next, type, member)
  
  #define list_tail(list, type, member)		\
  	list_entry((list)->prev, type, member)
  
  #define list_next(elm, member)					\
  	list_entry((elm)->member.next, typeof(*elm), member)
  
  #define list_for_each_entry(pos, list, member)			\
  	for (pos = list_head(list, typeof(*pos), member);	\
  	     &pos->member != (list);				\
  	     pos = list_next(pos, member))