[PATCH] v4l: 823: corrected probing code for tda8290
[linux-2.6.git] / include / linux / list.h
blobfbfca73355a3a6791a3f2afb20fa41823c5f6fc6
1 #ifndef _LINUX_LIST_H
2 #define _LINUX_LIST_H
4 #ifdef __KERNEL__
6 #include <linux/stddef.h>
7 #include <linux/prefetch.h>
8 #include <asm/system.h>
11 * These are non-NULL pointers that will result in page faults
12 * under normal circumstances, used to verify that nobody uses
13 * non-initialized list entries.
15 #define LIST_POISON1 ((void *) 0x00100100)
16 #define LIST_POISON2 ((void *) 0x00200200)
19 * Simple doubly linked list implementation.
21 * Some of the internal functions ("__xxx") are useful when
22 * manipulating whole lists rather than single entries, as
23 * sometimes we already know the next/prev entries and we can
24 * generate better code by using them directly rather than
25 * using the generic single-entry routines.
28 struct list_head {
29 struct list_head *next, *prev;
32 #define LIST_HEAD_INIT(name) { &(name), &(name) }
34 #define LIST_HEAD(name) \
35 struct list_head name = LIST_HEAD_INIT(name)
37 #define INIT_LIST_HEAD(ptr) do { \
38 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
39 } while (0)
42 * Insert a new entry between two known consecutive entries.
44 * This is only for internal list manipulation where we know
45 * the prev/next entries already!
47 static inline void __list_add(struct list_head *new,
48 struct list_head *prev,
49 struct list_head *next)
51 next->prev = new;
52 new->next = next;
53 new->prev = prev;
54 prev->next = new;
57 /**
58 * list_add - add a new entry
59 * @new: new entry to be added
60 * @head: list head to add it after
62 * Insert a new entry after the specified head.
63 * This is good for implementing stacks.
65 static inline void list_add(struct list_head *new, struct list_head *head)
67 __list_add(new, head, head->next);
70 /**
71 * list_add_tail - add a new entry
72 * @new: new entry to be added
73 * @head: list head to add it before
75 * Insert a new entry before the specified head.
76 * This is useful for implementing queues.
78 static inline void list_add_tail(struct list_head *new, struct list_head *head)
80 __list_add(new, head->prev, head);
84 * Insert a new entry between two known consecutive entries.
86 * This is only for internal list manipulation where we know
87 * the prev/next entries already!
89 static inline void __list_add_rcu(struct list_head * new,
90 struct list_head * prev, struct list_head * next)
92 new->next = next;
93 new->prev = prev;
94 smp_wmb();
95 next->prev = new;
96 prev->next = new;
99 /**
100 * list_add_rcu - add a new entry to rcu-protected list
101 * @new: new entry to be added
102 * @head: list head to add it after
104 * Insert a new entry after the specified head.
105 * This is good for implementing stacks.
107 * The caller must take whatever precautions are necessary
108 * (such as holding appropriate locks) to avoid racing
109 * with another list-mutation primitive, such as list_add_rcu()
110 * or list_del_rcu(), running on this same list.
111 * However, it is perfectly legal to run concurrently with
112 * the _rcu list-traversal primitives, such as
113 * list_for_each_entry_rcu().
115 static inline void list_add_rcu(struct list_head *new, struct list_head *head)
117 __list_add_rcu(new, head, head->next);
121 * list_add_tail_rcu - add a new entry to rcu-protected list
122 * @new: new entry to be added
123 * @head: list head to add it before
125 * Insert a new entry before the specified head.
126 * This is useful for implementing queues.
128 * The caller must take whatever precautions are necessary
129 * (such as holding appropriate locks) to avoid racing
130 * with another list-mutation primitive, such as list_add_tail_rcu()
131 * or list_del_rcu(), running on this same list.
132 * However, it is perfectly legal to run concurrently with
133 * the _rcu list-traversal primitives, such as
134 * list_for_each_entry_rcu().
136 static inline void list_add_tail_rcu(struct list_head *new,
137 struct list_head *head)
139 __list_add_rcu(new, head->prev, head);
143 * Delete a list entry by making the prev/next entries
144 * point to each other.
146 * This is only for internal list manipulation where we know
147 * the prev/next entries already!
149 static inline void __list_del(struct list_head * prev, struct list_head * next)
151 next->prev = prev;
152 prev->next = next;
156 * list_del - deletes entry from list.
157 * @entry: the element to delete from the list.
158 * Note: list_empty on entry does not return true after this, the entry is
159 * in an undefined state.
161 static inline void list_del(struct list_head *entry)
163 __list_del(entry->prev, entry->next);
164 entry->next = LIST_POISON1;
165 entry->prev = LIST_POISON2;
169 * list_del_rcu - deletes entry from list without re-initialization
170 * @entry: the element to delete from the list.
172 * Note: list_empty on entry does not return true after this,
173 * the entry is in an undefined state. It is useful for RCU based
174 * lockfree traversal.
176 * In particular, it means that we can not poison the forward
177 * pointers that may still be used for walking the list.
179 * The caller must take whatever precautions are necessary
180 * (such as holding appropriate locks) to avoid racing
181 * with another list-mutation primitive, such as list_del_rcu()
182 * or list_add_rcu(), running on this same list.
183 * However, it is perfectly legal to run concurrently with
184 * the _rcu list-traversal primitives, such as
185 * list_for_each_entry_rcu().
187 * Note that the caller is not permitted to immediately free
188 * the newly deleted entry. Instead, either synchronize_rcu()
189 * or call_rcu() must be used to defer freeing until an RCU
190 * grace period has elapsed.
192 static inline void list_del_rcu(struct list_head *entry)
194 __list_del(entry->prev, entry->next);
195 entry->prev = LIST_POISON2;
199 * list_replace_rcu - replace old entry by new one
200 * @old : the element to be replaced
201 * @new : the new element to insert
203 * The old entry will be replaced with the new entry atomically.
205 static inline void list_replace_rcu(struct list_head *old, struct list_head *new){
206 new->next = old->next;
207 new->prev = old->prev;
208 smp_wmb();
209 new->next->prev = new;
210 new->prev->next = new;
214 * list_del_init - deletes entry from list and reinitialize it.
215 * @entry: the element to delete from the list.
217 static inline void list_del_init(struct list_head *entry)
219 __list_del(entry->prev, entry->next);
220 INIT_LIST_HEAD(entry);
224 * list_move - delete from one list and add as another's head
225 * @list: the entry to move
226 * @head: the head that will precede our entry
228 static inline void list_move(struct list_head *list, struct list_head *head)
230 __list_del(list->prev, list->next);
231 list_add(list, head);
235 * list_move_tail - delete from one list and add as another's tail
236 * @list: the entry to move
237 * @head: the head that will follow our entry
239 static inline void list_move_tail(struct list_head *list,
240 struct list_head *head)
242 __list_del(list->prev, list->next);
243 list_add_tail(list, head);
247 * list_empty - tests whether a list is empty
248 * @head: the list to test.
250 static inline int list_empty(const struct list_head *head)
252 return head->next == head;
256 * list_empty_careful - tests whether a list is
257 * empty _and_ checks that no other CPU might be
258 * in the process of still modifying either member
260 * NOTE: using list_empty_careful() without synchronization
261 * can only be safe if the only activity that can happen
262 * to the list entry is list_del_init(). Eg. it cannot be used
263 * if another CPU could re-list_add() it.
265 * @head: the list to test.
267 static inline int list_empty_careful(const struct list_head *head)
269 struct list_head *next = head->next;
270 return (next == head) && (next == head->prev);
273 static inline void __list_splice(struct list_head *list,
274 struct list_head *head)
276 struct list_head *first = list->next;
277 struct list_head *last = list->prev;
278 struct list_head *at = head->next;
280 first->prev = head;
281 head->next = first;
283 last->next = at;
284 at->prev = last;
288 * list_splice - join two lists
289 * @list: the new list to add.
290 * @head: the place to add it in the first list.
292 static inline void list_splice(struct list_head *list, struct list_head *head)
294 if (!list_empty(list))
295 __list_splice(list, head);
299 * list_splice_init - join two lists and reinitialise the emptied list.
300 * @list: the new list to add.
301 * @head: the place to add it in the first list.
303 * The list at @list is reinitialised
305 static inline void list_splice_init(struct list_head *list,
306 struct list_head *head)
308 if (!list_empty(list)) {
309 __list_splice(list, head);
310 INIT_LIST_HEAD(list);
315 * list_entry - get the struct for this entry
316 * @ptr: the &struct list_head pointer.
317 * @type: the type of the struct this is embedded in.
318 * @member: the name of the list_struct within the struct.
320 #define list_entry(ptr, type, member) \
321 container_of(ptr, type, member)
324 * list_for_each - iterate over a list
325 * @pos: the &struct list_head to use as a loop counter.
326 * @head: the head for your list.
328 #define list_for_each(pos, head) \
329 for (pos = (head)->next; prefetch(pos->next), pos != (head); \
330 pos = pos->next)
333 * __list_for_each - iterate over a list
334 * @pos: the &struct list_head to use as a loop counter.
335 * @head: the head for your list.
337 * This variant differs from list_for_each() in that it's the
338 * simplest possible list iteration code, no prefetching is done.
339 * Use this for code that knows the list to be very short (empty
340 * or 1 entry) most of the time.
342 #define __list_for_each(pos, head) \
343 for (pos = (head)->next; pos != (head); pos = pos->next)
346 * list_for_each_prev - iterate over a list backwards
347 * @pos: the &struct list_head to use as a loop counter.
348 * @head: the head for your list.
350 #define list_for_each_prev(pos, head) \
351 for (pos = (head)->prev; prefetch(pos->prev), pos != (head); \
352 pos = pos->prev)
355 * list_for_each_safe - iterate over a list safe against removal of list entry
356 * @pos: the &struct list_head to use as a loop counter.
357 * @n: another &struct list_head to use as temporary storage
358 * @head: the head for your list.
360 #define list_for_each_safe(pos, n, head) \
361 for (pos = (head)->next, n = pos->next; pos != (head); \
362 pos = n, n = pos->next)
365 * list_for_each_entry - iterate over list of given type
366 * @pos: the type * to use as a loop counter.
367 * @head: the head for your list.
368 * @member: the name of the list_struct within the struct.
370 #define list_for_each_entry(pos, head, member) \
371 for (pos = list_entry((head)->next, typeof(*pos), member); \
372 prefetch(pos->member.next), &pos->member != (head); \
373 pos = list_entry(pos->member.next, typeof(*pos), member))
376 * list_for_each_entry_reverse - iterate backwards over list of given type.
377 * @pos: the type * to use as a loop counter.
378 * @head: the head for your list.
379 * @member: the name of the list_struct within the struct.
381 #define list_for_each_entry_reverse(pos, head, member) \
382 for (pos = list_entry((head)->prev, typeof(*pos), member); \
383 prefetch(pos->member.prev), &pos->member != (head); \
384 pos = list_entry(pos->member.prev, typeof(*pos), member))
387 * list_prepare_entry - prepare a pos entry for use as a start point in
388 * list_for_each_entry_continue
389 * @pos: the type * to use as a start point
390 * @head: the head of the list
391 * @member: the name of the list_struct within the struct.
393 #define list_prepare_entry(pos, head, member) \
394 ((pos) ? : list_entry(head, typeof(*pos), member))
397 * list_for_each_entry_continue - iterate over list of given type
398 * continuing after existing point
399 * @pos: the type * to use as a loop counter.
400 * @head: the head for your list.
401 * @member: the name of the list_struct within the struct.
403 #define list_for_each_entry_continue(pos, head, member) \
404 for (pos = list_entry(pos->member.next, typeof(*pos), member); \
405 prefetch(pos->member.next), &pos->member != (head); \
406 pos = list_entry(pos->member.next, typeof(*pos), member))
409 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
410 * @pos: the type * to use as a loop counter.
411 * @n: another type * to use as temporary storage
412 * @head: the head for your list.
413 * @member: the name of the list_struct within the struct.
415 #define list_for_each_entry_safe(pos, n, head, member) \
416 for (pos = list_entry((head)->next, typeof(*pos), member), \
417 n = list_entry(pos->member.next, typeof(*pos), member); \
418 &pos->member != (head); \
419 pos = n, n = list_entry(n->member.next, typeof(*n), member))
422 * list_for_each_entry_safe_continue - iterate over list of given type
423 * continuing after existing point safe against removal of list entry
424 * @pos: the type * to use as a loop counter.
425 * @n: another type * to use as temporary storage
426 * @head: the head for your list.
427 * @member: the name of the list_struct within the struct.
429 #define list_for_each_entry_safe_continue(pos, n, head, member) \
430 for (pos = list_entry(pos->member.next, typeof(*pos), member), \
431 n = list_entry(pos->member.next, typeof(*pos), member); \
432 &pos->member != (head); \
433 pos = n, n = list_entry(n->member.next, typeof(*n), member))
436 * list_for_each_rcu - iterate over an rcu-protected list
437 * @pos: the &struct list_head to use as a loop counter.
438 * @head: the head for your list.
440 * This list-traversal primitive may safely run concurrently with
441 * the _rcu list-mutation primitives such as list_add_rcu()
442 * as long as the traversal is guarded by rcu_read_lock().
444 #define list_for_each_rcu(pos, head) \
445 for (pos = (head)->next; \
446 prefetch(rcu_dereference(pos)->next), pos != (head); \
447 pos = pos->next)
449 #define __list_for_each_rcu(pos, head) \
450 for (pos = (head)->next; \
451 rcu_dereference(pos) != (head); \
452 pos = pos->next)
455 * list_for_each_safe_rcu - iterate over an rcu-protected list safe
456 * against removal of list entry
457 * @pos: the &struct list_head to use as a loop counter.
458 * @n: another &struct list_head to use as temporary storage
459 * @head: the head for your list.
461 * This list-traversal primitive may safely run concurrently with
462 * the _rcu list-mutation primitives such as list_add_rcu()
463 * as long as the traversal is guarded by rcu_read_lock().
465 #define list_for_each_safe_rcu(pos, n, head) \
466 for (pos = (head)->next; \
467 n = rcu_dereference(pos)->next, pos != (head); \
468 pos = n)
471 * list_for_each_entry_rcu - iterate over rcu list of given type
472 * @pos: the type * to use as a loop counter.
473 * @head: the head for your list.
474 * @member: the name of the list_struct within the struct.
476 * This list-traversal primitive may safely run concurrently with
477 * the _rcu list-mutation primitives such as list_add_rcu()
478 * as long as the traversal is guarded by rcu_read_lock().
480 #define list_for_each_entry_rcu(pos, head, member) \
481 for (pos = list_entry((head)->next, typeof(*pos), member); \
482 prefetch(rcu_dereference(pos)->member.next), \
483 &pos->member != (head); \
484 pos = list_entry(pos->member.next, typeof(*pos), member))
488 * list_for_each_continue_rcu - iterate over an rcu-protected list
489 * continuing after existing point.
490 * @pos: the &struct list_head to use as a loop counter.
491 * @head: the head for your list.
493 * This list-traversal primitive may safely run concurrently with
494 * the _rcu list-mutation primitives such as list_add_rcu()
495 * as long as the traversal is guarded by rcu_read_lock().
497 #define list_for_each_continue_rcu(pos, head) \
498 for ((pos) = (pos)->next; \
499 prefetch(rcu_dereference((pos))->next), (pos) != (head); \
500 (pos) = (pos)->next)
503 * Double linked lists with a single pointer list head.
504 * Mostly useful for hash tables where the two pointer list head is
505 * too wasteful.
506 * You lose the ability to access the tail in O(1).
509 struct hlist_head {
510 struct hlist_node *first;
513 struct hlist_node {
514 struct hlist_node *next, **pprev;
517 #define HLIST_HEAD_INIT { .first = NULL }
518 #define HLIST_HEAD(name) struct hlist_head name = { .first = NULL }
519 #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
522 static inline int hlist_unhashed(const struct hlist_node *h)
524 return !h->pprev;
527 static inline int hlist_empty(const struct hlist_head *h)
529 return !h->first;
532 static inline void __hlist_del(struct hlist_node *n)
534 struct hlist_node *next = n->next;
535 struct hlist_node **pprev = n->pprev;
536 *pprev = next;
537 if (next)
538 next->pprev = pprev;
541 static inline void hlist_del(struct hlist_node *n)
543 __hlist_del(n);
544 n->next = LIST_POISON1;
545 n->pprev = LIST_POISON2;
549 * hlist_del_rcu - deletes entry from hash list without re-initialization
550 * @n: the element to delete from the hash list.
552 * Note: list_unhashed() on entry does not return true after this,
553 * the entry is in an undefined state. It is useful for RCU based
554 * lockfree traversal.
556 * In particular, it means that we can not poison the forward
557 * pointers that may still be used for walking the hash list.
559 * The caller must take whatever precautions are necessary
560 * (such as holding appropriate locks) to avoid racing
561 * with another list-mutation primitive, such as hlist_add_head_rcu()
562 * or hlist_del_rcu(), running on this same list.
563 * However, it is perfectly legal to run concurrently with
564 * the _rcu list-traversal primitives, such as
565 * hlist_for_each_entry().
567 static inline void hlist_del_rcu(struct hlist_node *n)
569 __hlist_del(n);
570 n->pprev = LIST_POISON2;
573 static inline void hlist_del_init(struct hlist_node *n)
575 if (n->pprev) {
576 __hlist_del(n);
577 INIT_HLIST_NODE(n);
581 static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
583 struct hlist_node *first = h->first;
584 n->next = first;
585 if (first)
586 first->pprev = &n->next;
587 h->first = n;
588 n->pprev = &h->first;
593 * hlist_add_head_rcu - adds the specified element to the specified hlist,
594 * while permitting racing traversals.
595 * @n: the element to add to the hash list.
596 * @h: the list to add to.
598 * The caller must take whatever precautions are necessary
599 * (such as holding appropriate locks) to avoid racing
600 * with another list-mutation primitive, such as hlist_add_head_rcu()
601 * or hlist_del_rcu(), running on this same list.
602 * However, it is perfectly legal to run concurrently with
603 * the _rcu list-traversal primitives, such as
604 * hlist_for_each_entry_rcu(), used to prevent memory-consistency
605 * problems on Alpha CPUs. Regardless of the type of CPU, the
606 * list-traversal primitive must be guarded by rcu_read_lock().
608 static inline void hlist_add_head_rcu(struct hlist_node *n,
609 struct hlist_head *h)
611 struct hlist_node *first = h->first;
612 n->next = first;
613 n->pprev = &h->first;
614 smp_wmb();
615 if (first)
616 first->pprev = &n->next;
617 h->first = n;
620 /* next must be != NULL */
621 static inline void hlist_add_before(struct hlist_node *n,
622 struct hlist_node *next)
624 n->pprev = next->pprev;
625 n->next = next;
626 next->pprev = &n->next;
627 *(n->pprev) = n;
630 static inline void hlist_add_after(struct hlist_node *n,
631 struct hlist_node *next)
633 next->next = n->next;
634 n->next = next;
635 next->pprev = &n->next;
637 if(next->next)
638 next->next->pprev = &next->next;
642 * hlist_add_before_rcu - adds the specified element to the specified hlist
643 * before the specified node while permitting racing traversals.
644 * @n: the new element to add to the hash list.
645 * @next: the existing element to add the new element before.
647 * The caller must take whatever precautions are necessary
648 * (such as holding appropriate locks) to avoid racing
649 * with another list-mutation primitive, such as hlist_add_head_rcu()
650 * or hlist_del_rcu(), running on this same list.
651 * However, it is perfectly legal to run concurrently with
652 * the _rcu list-traversal primitives, such as
653 * hlist_for_each_entry_rcu(), used to prevent memory-consistency
654 * problems on Alpha CPUs.
656 static inline void hlist_add_before_rcu(struct hlist_node *n,
657 struct hlist_node *next)
659 n->pprev = next->pprev;
660 n->next = next;
661 smp_wmb();
662 next->pprev = &n->next;
663 *(n->pprev) = n;
667 * hlist_add_after_rcu - adds the specified element to the specified hlist
668 * after the specified node while permitting racing traversals.
669 * @prev: the existing element to add the new element after.
670 * @n: the new element to add to the hash list.
672 * The caller must take whatever precautions are necessary
673 * (such as holding appropriate locks) to avoid racing
674 * with another list-mutation primitive, such as hlist_add_head_rcu()
675 * or hlist_del_rcu(), running on this same list.
676 * However, it is perfectly legal to run concurrently with
677 * the _rcu list-traversal primitives, such as
678 * hlist_for_each_entry_rcu(), used to prevent memory-consistency
679 * problems on Alpha CPUs.
681 static inline void hlist_add_after_rcu(struct hlist_node *prev,
682 struct hlist_node *n)
684 n->next = prev->next;
685 n->pprev = &prev->next;
686 smp_wmb();
687 prev->next = n;
688 if (n->next)
689 n->next->pprev = &n->next;
692 #define hlist_entry(ptr, type, member) container_of(ptr,type,member)
694 #define hlist_for_each(pos, head) \
695 for (pos = (head)->first; pos && ({ prefetch(pos->next); 1; }); \
696 pos = pos->next)
698 #define hlist_for_each_safe(pos, n, head) \
699 for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \
700 pos = n)
703 * hlist_for_each_entry - iterate over list of given type
704 * @tpos: the type * to use as a loop counter.
705 * @pos: the &struct hlist_node to use as a loop counter.
706 * @head: the head for your list.
707 * @member: the name of the hlist_node within the struct.
709 #define hlist_for_each_entry(tpos, pos, head, member) \
710 for (pos = (head)->first; \
711 pos && ({ prefetch(pos->next); 1;}) && \
712 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
713 pos = pos->next)
716 * hlist_for_each_entry_continue - iterate over a hlist continuing after existing point
717 * @tpos: the type * to use as a loop counter.
718 * @pos: the &struct hlist_node to use as a loop counter.
719 * @member: the name of the hlist_node within the struct.
721 #define hlist_for_each_entry_continue(tpos, pos, member) \
722 for (pos = (pos)->next; \
723 pos && ({ prefetch(pos->next); 1;}) && \
724 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
725 pos = pos->next)
728 * hlist_for_each_entry_from - iterate over a hlist continuing from existing point
729 * @tpos: the type * to use as a loop counter.
730 * @pos: the &struct hlist_node to use as a loop counter.
731 * @member: the name of the hlist_node within the struct.
733 #define hlist_for_each_entry_from(tpos, pos, member) \
734 for (; pos && ({ prefetch(pos->next); 1;}) && \
735 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
736 pos = pos->next)
739 * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
740 * @tpos: the type * to use as a loop counter.
741 * @pos: the &struct hlist_node to use as a loop counter.
742 * @n: another &struct hlist_node to use as temporary storage
743 * @head: the head for your list.
744 * @member: the name of the hlist_node within the struct.
746 #define hlist_for_each_entry_safe(tpos, pos, n, head, member) \
747 for (pos = (head)->first; \
748 pos && ({ n = pos->next; 1; }) && \
749 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
750 pos = n)
753 * hlist_for_each_entry_rcu - iterate over rcu list of given type
754 * @tpos: the type * to use as a loop counter.
755 * @pos: the &struct hlist_node to use as a loop counter.
756 * @head: the head for your list.
757 * @member: the name of the hlist_node within the struct.
759 * This list-traversal primitive may safely run concurrently with
760 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
761 * as long as the traversal is guarded by rcu_read_lock().
763 #define hlist_for_each_entry_rcu(tpos, pos, head, member) \
764 for (pos = (head)->first; \
765 rcu_dereference(pos) && ({ prefetch(pos->next); 1;}) && \
766 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
767 pos = pos->next)
769 #else
770 #warning "don't include kernel headers in userspace"
771 #endif /* __KERNEL__ */
772 #endif