list.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

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, struct list_head *next)
  70. {
  71. next->prev = prev;
  72. prev->next = next;
  73. }
  74. /**
  75.  * list_del - deletes entry from list.
  76.  * @entry: the element to delete from the list.
  77.  * Note: list_empty on entry does not return true after this, the entry is in an undefined state.
  78.  */
  79. static inline void list_del(struct list_head *entry)
  80. {
  81. __list_del(entry->prev, entry->next);
  82. entry->next = (void *) 0;
  83. entry->prev = (void *) 0;
  84. }
  85. /**
  86.  * list_del_init - deletes entry from list and reinitialize it.
  87.  * @entry: the element to delete from the list.
  88.  */
  89. static inline void list_del_init(struct list_head *entry)
  90. {
  91. __list_del(entry->prev, entry->next);
  92. INIT_LIST_HEAD(entry); 
  93. }
  94. /**
  95.  * list_move - delete from one list and add as another's head
  96.  * @list: the entry to move
  97.  * @head: the head that will precede our entry
  98.  */
  99. static inline void list_move(struct list_head *list, struct list_head *head)
  100. {
  101.         __list_del(list->prev, list->next);
  102.         list_add(list, head);
  103. }
  104. /**
  105.  * list_move_tail - delete from one list and add as another's tail
  106.  * @list: the entry to move
  107.  * @head: the head that will follow our entry
  108.  */
  109. static inline void list_move_tail(struct list_head *list,
  110.   struct list_head *head)
  111. {
  112.         __list_del(list->prev, list->next);
  113.         list_add_tail(list, head);
  114. }
  115. /**
  116.  * list_empty - tests whether a list is empty
  117.  * @head: the list to test.
  118.  */
  119. static inline int list_empty(struct list_head *head)
  120. {
  121. return head->next == head;
  122. }
  123. static inline void __list_splice(struct list_head *list,
  124.  struct list_head *head)
  125. {
  126. struct list_head *first = list->next;
  127. struct list_head *last = list->prev;
  128. struct list_head *at = head->next;
  129. first->prev = head;
  130. head->next = first;
  131. last->next = at;
  132. at->prev = last;
  133. }
  134. /**
  135.  * list_splice - join two lists
  136.  * @list: the new list to add.
  137.  * @head: the place to add it in the first list.
  138.  */
  139. static inline void list_splice(struct list_head *list, struct list_head *head)
  140. {
  141. if (!list_empty(list))
  142. __list_splice(list, head);
  143. }
  144. /**
  145.  * list_splice_init - join two lists and reinitialise the emptied list.
  146.  * @list: the new list to add.
  147.  * @head: the place to add it in the first list.
  148.  *
  149.  * The list at @list is reinitialised
  150.  */
  151. static inline void list_splice_init(struct list_head *list,
  152.     struct list_head *head)
  153. {
  154. if (!list_empty(list)) {
  155. __list_splice(list, head);
  156. INIT_LIST_HEAD(list);
  157. }
  158. }
  159. /**
  160.  * list_entry - get the struct for this entry
  161.  * @ptr: the &struct list_head pointer.
  162.  * @type: the type of the struct this is embedded in.
  163.  * @member: the name of the list_struct within the struct.
  164.  */
  165. #define list_entry(ptr, type, member) 
  166. ((type *)((char *)(ptr)-(unsigned long)(&((type *)0)->member)))
  167. /**
  168.  * list_for_each - iterate over a list
  169.  * @pos: the &struct list_head to use as a loop counter.
  170.  * @head: the head for your list.
  171.  */
  172. #define list_for_each(pos, head) 
  173. for (pos = (head)->next, prefetch(pos->next); pos != (head); 
  174.          pos = pos->next, prefetch(pos->next))
  175. /**
  176.  * list_for_each_prev - iterate over a list backwards
  177.  * @pos: the &struct list_head to use as a loop counter.
  178.  * @head: the head for your list.
  179.  */
  180. #define list_for_each_prev(pos, head) 
  181. for (pos = (head)->prev, prefetch(pos->prev); pos != (head); 
  182.          pos = pos->prev, prefetch(pos->prev))
  183.         
  184. /**
  185.  * list_for_each_safe - iterate over a list safe against removal of list entry
  186.  * @pos: the &struct list_head to use as a loop counter.
  187.  * @n: another &struct list_head to use as temporary storage
  188.  * @head: the head for your list.
  189.  */
  190. #define list_for_each_safe(pos, n, head) 
  191. for (pos = (head)->next, n = pos->next; pos != (head); 
  192. pos = n, n = pos->next)
  193. /**
  194.  * list_for_each_entry - iterate over list of given type
  195.  * @pos: the type * to use as a loop counter.
  196.  * @head: the head for your list.
  197.  * @member: the name of the list_struct within the struct.
  198.  */
  199. #define list_for_each_entry(pos, head, member)
  200. for (pos = list_entry((head)->next, typeof(*pos), member),
  201.      prefetch(pos->member.next);
  202.      &pos->member != (head); 
  203.      pos = list_entry(pos->member.next, typeof(*pos), member),
  204.      prefetch(pos->member.next))
  205. #endif /* __KERNEL__ || _LVM_H_INCLUDE */
  206. #endif