c85f50c7e79c45f8ae47ab0e721763044e80d09f
2 * Copied from the Linux kernel source tree, version 2.6.13.
4 * Licensed under the GPL v2 as per the whole kernel source tree.
8 #include <stddef.h> /* offsetof */
12 #define container_of(ptr, type, member) ({ \
13 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
14 (type *)( (char *)__mptr - offsetof(type,member) );})
17 * These are non-NULL pointers that will result in page faults
18 * under normal circumstances, used to verify that nobody uses
19 * non-initialized list entries.
21 #define LIST_POISON1 ((void *) 0x00100100)
22 #define LIST_POISON2 ((void *) 0x00200200)
25 * Simple doubly linked list implementation.
27 * Some of the internal functions ("__xxx") are useful when
28 * manipulating whole lists rather than single entries, as
29 * sometimes we already know the next/prev entries and we can
30 * generate better code by using them directly rather than
31 * using the generic single-entry routines.
35 struct list_head
*next
, *prev
;
38 #define INIT_LIST_HEAD(ptr) do { \
39 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
43 * Insert a new entry between two known consecutive entries.
45 * This is only for internal list manipulation where we know
46 * the prev/next entries already!
48 static inline void __list_add(struct list_head
*new,
49 struct list_head
*prev
,
50 struct list_head
*next
)
59 * list_add - add a new entry
60 * @new: new entry to be added
61 * @head: list head to add it after
63 * Insert a new entry after the specified head.
64 * This is good for implementing stacks.
66 static inline void list_add(struct list_head
*new, struct list_head
*head
)
68 __list_add(new, head
, head
->next
);
72 * list_add_tail - add a new entry
73 * @new: new entry to be added
74 * @head: list head to add it before
76 * Insert a new entry before the specified head.
77 * This is useful for implementing queues.
79 static inline void list_add_tail(struct list_head
*new, struct list_head
*head
)
81 __list_add(new, head
->prev
, head
);
85 * Delete a list entry by making the prev/next entries
86 * point to each other.
88 * This is only for internal list manipulation where we know
89 * the prev/next entries already!
91 static inline void __list_del(struct list_head
* prev
, struct list_head
* next
)
98 * list_del - deletes entry from list.
99 * @entry: the element to delete from the list.
100 * Note: list_empty on entry does not return true after this, the entry is
101 * in an undefined state.
103 static inline void list_del(struct list_head
*entry
)
105 __list_del(entry
->prev
, entry
->next
);
106 entry
->next
= LIST_POISON1
;
107 entry
->prev
= LIST_POISON2
;
111 * list_move - delete from one list and add as another's head
112 * @list: the entry to move
113 * @head: the head that will precede our entry
115 static inline void list_move(struct list_head
*list
, struct list_head
*head
)
117 __list_del(list
->prev
, list
->next
);
118 list_add(list
, head
);
122 * list_empty - tests whether a list is empty
123 * @head: the list to test.
125 static inline int list_empty(const struct list_head
*head
)
127 return head
->next
== head
;
131 * list_entry - get the struct for this entry
132 * @ptr: the &struct list_head pointer.
133 * @type: the type of the struct this is embedded in.
134 * @member: the name of the list_struct within the struct.
136 #define list_entry(ptr, type, member) \
137 container_of(ptr, type, member)
140 * list_for_each_safe - iterate over a list safe against removal of list entry
141 * @pos: the &struct list_head to use as a loop counter.
142 * @n: another &struct list_head to use as temporary storage
143 * @head: the head for your list.
145 #define list_for_each_safe(pos, n, head) \
146 for (pos = (head)->next, n = pos->next; pos != (head); \
147 pos = n, n = pos->next)
150 * list_for_each_entry - iterate over list of given type
151 * @pos: the type * to use as a loop counter.
152 * @head: the head for your list.
153 * @member: the name of the list_struct within the struct.
155 #define list_for_each_entry(pos, head, member) \
156 for (pos = list_entry((head)->next, typeof(*pos), member); \
157 &pos->member != (head); \
158 pos = list_entry(pos->member.next, typeof(*pos), member))
161 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
162 * @pos: the type * to use as a loop counter.
163 * @n: another type * to use as temporary storage
164 * @head: the head for your list.
165 * @member: the name of the list_struct within the struct.
167 #define list_for_each_entry_safe(pos, n, head, member) \
168 for (pos = list_entry((head)->next, typeof(*pos), member), \
169 n = list_entry(pos->member.next, typeof(*pos), member); \
170 &pos->member != (head); \
171 pos = n, n = list_entry(n->member.next, typeof(*n), member))
173 * list_for_each_entry_safe_reverse - iterate backwards over list of given type safe against
174 * removal of list entry
175 * @pos: the type * to use as a loop counter.
176 * @n: another type * to use as temporary storage
177 * @head: the head for your list.
178 * @member: the name of the list_struct within the struct.
180 #define list_for_each_entry_safe_reverse(pos, n, head, member) \
181 for (pos = list_entry((head)->prev, typeof(*pos), member), \
182 n = list_entry(pos->member.prev, typeof(*pos), member); \
183 &pos->member != (head); \
184 pos = n, n = list_entry(n->member.prev, typeof(*n), member))