list.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_LIST_H
  2. #define _LINUX_LIST_H
  3. #if defined(__KERNEL__) || defined(_LVM_H_INCLUDE)
  4. #include <linux/prefetch.h>
  5. /*
  6.  * Simple doubly linked list implementation.
  7.  *
  8.  * Some of the internal functions ("__xxx") are useful when
  9.  * manipulating whole lists rather than single entries, as
  10.  * sometimes we already know the next/prev entries and we can
  11.  * generate better code by using them directly rather than
  12.  * using the generic single-entry routines.
  13.  */
  14. struct list_head {
  15. struct list_head *next, *prev;
  16. };
  17. #define LIST_HEAD_INIT(name) { &(name), &(name) }
  18. #define LIST_HEAD(name) 
  19. struct list_head name = LIST_HEAD_INIT(name)
  20. #define INIT_LIST_HEAD(ptr) do { 
  21. (ptr)->next = (ptr); (ptr)->prev = (ptr); 
  22. } while (0)
  23. /*
  24.  * Insert a new entry between two known consecutive entries. 
  25.  *
  26.  * This is only for internal list manipulation where we know
  27.  * the prev/next entries already!
  28.  */
  29. static __inline__ void __list_add(struct list_head * new,
  30. struct list_head * prev,
  31. struct list_head * next)
  32. {
  33. next->prev = new;
  34. new->next = next;
  35. new->prev = prev;
  36. prev->next = new;
  37. }
  38. /**
  39.  * list_add - add a new entry
  40.  * @new: new entry to be added
  41.  * @head: list head to add it after
  42.  *
  43.  * Insert a new entry after the specified head.
  44.  * This is good for implementing stacks.
  45.  */
  46. static __inline__ void list_add(struct list_head *new, struct list_head *head)
  47. {
  48. __list_add(new, head, head->next);
  49. }
  50. /**
  51.  * list_add_tail - add a new entry
  52.  * @new: new entry to be added
  53.  * @head: list head to add it before
  54.  *
  55.  * Insert a new entry before the specified head.
  56.  * This is useful for implementing queues.
  57.  */
  58. static __inline__ void list_add_tail(struct list_head *new, struct list_head *head)
  59. {
  60. __list_add(new, head->prev, head);
  61. }
  62. /*
  63.  * Delete a list entry by making the prev/next entries
  64.  * point to each other.
  65.  *
  66.  * This is only for internal list manipulation where we know
  67.  * the prev/next entries already!
  68.  */
  69. static __inline__ void __list_del(struct list_head * prev,
  70.   struct list_head * next)
  71. {
  72. next->prev = prev;
  73. prev->next = next;
  74. }
  75. /**
  76.  * list_del - deletes entry from list.
  77.  * @entry: the element to delete from the list.
  78.  * Note: list_empty on entry does not return true after this, the entry is in an undefined state.
  79.  */
  80. static __inline__ void list_del(struct list_head *entry)
  81. {
  82. __list_del(entry->prev, entry->next);
  83. }
  84. /**
  85.  * list_del_init - deletes entry from list and reinitialize it.
  86.  * @entry: the element to delete from the list.
  87.  */
  88. static __inline__ void list_del_init(struct list_head *entry)
  89. {
  90. __list_del(entry->prev, entry->next);
  91. INIT_LIST_HEAD(entry); 
  92. }
  93. /**
  94.  * list_empty - tests whether a list is empty
  95.  * @head: the list to test.
  96.  */
  97. static __inline__ int list_empty(struct list_head *head)
  98. {
  99. return head->next == head;
  100. }
  101. /**
  102.  * list_splice - join two lists
  103.  * @list: the new list to add.
  104.  * @head: the place to add it in the first list.
  105.  */
  106. static __inline__ void list_splice(struct list_head *list, struct list_head *head)
  107. {
  108. struct list_head *first = list->next;
  109. if (first != list) {
  110. struct list_head *last = list->prev;
  111. struct list_head *at = head->next;
  112. first->prev = head;
  113. head->next = first;
  114. last->next = at;
  115. at->prev = last;
  116. }
  117. }
  118. /**
  119.  * list_entry - get the struct for this entry
  120.  * @ptr: the &struct list_head pointer.
  121.  * @type: the type of the struct this is embedded in.
  122.  * @member: the name of the list_struct within the struct.
  123.  */
  124. #define list_entry(ptr, type, member) 
  125. ((type *)((char *)(ptr)-(unsigned long)(&((type *)0)->member)))
  126. /**
  127.  * list_for_each - iterate over a list
  128.  * @pos: the &struct list_head to use as a loop counter.
  129.  * @head: the head for your list.
  130.  */
  131. #define list_for_each(pos, head) 
  132. for (pos = (head)->next, prefetch(pos->next); pos != (head); 
  133.          pos = pos->next, prefetch(pos->next))
  134.         
  135. /**
  136.  * list_for_each_safe - iterate over a list safe against removal of list entry
  137.  * @pos: the &struct list_head to use as a loop counter.
  138.  * @n: another &struct list_head to use as temporary storage
  139.  * @head: the head for your list.
  140.  */
  141. #define list_for_each_safe(pos, n, head) 
  142. for (pos = (head)->next, n = pos->next; pos != (head); 
  143. pos = n, n = pos->next)
  144. /**
  145.  * list_for_each_prev - iterate over a list in reverse order
  146.  * @pos: the &struct list_head to use as a loop counter.
  147.  * @head: the head for your list.
  148.  */
  149. #define list_for_each_prev(pos, head) 
  150. for (pos = (head)->prev, prefetch(pos->prev); pos != (head); 
  151.          pos = pos->prev, prefetch(pos->prev))
  152.         
  153. #endif /* __KERNEL__ || _LVM_H_INCLUDE */
  154. #endif