dl_list.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /*
  2. * Copyright (c) 2013-2014, 2017, 2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /*=========================================================================== */
  19. /* Double-link list definitions (adapted from Atheros SDIO stack) */
  20. /* */
  21. /* Author(s): ="Atheros" */
  22. /*=========================================================================== */
  23. #ifndef __DL_LIST_H___
  24. #define __DL_LIST_H___
  25. #define A_CONTAINING_STRUCT(address, struct_type, field_name) \
  26. ((struct_type *)((char *)(address) - \
  27. (char *)(&((struct_type *)0)->field_name)))
  28. /* list functions */
  29. /* pointers for the list */
  30. typedef struct _DL_LIST {
  31. struct _DL_LIST *pPrev;
  32. struct _DL_LIST *pNext;
  33. } DL_LIST, *PDL_LIST;
  34. /*
  35. * DL_LIST_INIT , initialize doubly linked list
  36. */
  37. #define DL_LIST_INIT(pList) \
  38. {(pList)->pPrev = pList; (pList)->pNext = pList; }
  39. /* faster macro to init list and add a single item */
  40. #define DL_LIST_INIT_AND_ADD(pList, pItem) \
  41. { (pList)->pPrev = (pItem); \
  42. (pList)->pNext = (pItem); \
  43. (pItem)->pNext = (pList); \
  44. (pItem)->pPrev = (pList); \
  45. }
  46. #define DL_LIST_IS_EMPTY(pList) (((pList)->pPrev == (pList)) && \
  47. ((pList)->pNext == (pList)))
  48. #define DL_LIST_GET_ITEM_AT_HEAD(pList) (pList)->pNext
  49. #define DL_LIST_GET_ITEM_AT_TAIL(pList) (pList)->pPrev
  50. /*
  51. * ITERATE_OVER_LIST pStart is the list, pTemp is a temp list member
  52. * NOT: do not use this function if the items in the list are deleted inside the
  53. * iteration loop
  54. */
  55. #define ITERATE_OVER_LIST(pStart, pTemp) \
  56. for ((pTemp) = (pStart)->pNext; pTemp != (pStart); \
  57. (pTemp) = (pTemp)->pNext)
  58. static inline bool dl_list_is_entry_in_list(const DL_LIST *pList,
  59. const DL_LIST *pEntry)
  60. {
  61. const DL_LIST *pTmp;
  62. if (pList == pEntry)
  63. return true;
  64. ITERATE_OVER_LIST(pList, pTmp) {
  65. if (pTmp == pEntry)
  66. return true;
  67. }
  68. return false;
  69. }
  70. /* safe iterate macro that allows the item to be removed from the list
  71. * the iteration continues to the next item in the list
  72. */
  73. #define ITERATE_OVER_LIST_ALLOW_REMOVE(pStart, pItem, st, offset) \
  74. { \
  75. PDL_LIST pTemp; \
  76. { pTemp = (pStart)->pNext; } \
  77. while (pTemp != (pStart)) { \
  78. { (pItem) = A_CONTAINING_STRUCT(pTemp, st, offset); } \
  79. { pTemp = pTemp->pNext; } \
  80. #define ITERATE_IS_VALID(pStart) dl_list_is_entry_in_list(pStart, pTemp)
  81. #define ITERATE_RESET(pStart) { pTemp = (pStart)->pNext; }
  82. #define ITERATE_END }}
  83. /*
  84. * dl_list_insert_tail - insert pAdd to the end of the list
  85. */
  86. static inline PDL_LIST dl_list_insert_tail(PDL_LIST pList, PDL_LIST pAdd)
  87. {
  88. /* insert at tail */
  89. pAdd->pPrev = pList->pPrev;
  90. pAdd->pNext = pList;
  91. if (pList->pPrev)
  92. pList->pPrev->pNext = pAdd;
  93. pList->pPrev = pAdd;
  94. return pAdd;
  95. }
  96. /*
  97. * dl_list_insert_head - insert pAdd into the head of the list
  98. */
  99. static inline PDL_LIST dl_list_insert_head(PDL_LIST pList, PDL_LIST pAdd)
  100. {
  101. /* insert at head */
  102. pAdd->pPrev = pList;
  103. pAdd->pNext = pList->pNext;
  104. pList->pNext->pPrev = pAdd;
  105. pList->pNext = pAdd;
  106. return pAdd;
  107. }
  108. #define DL_ListAdd(pList, pItem) dl_list_insert_head((pList), (pItem))
  109. /*
  110. * dl_list_remove - remove pDel from list
  111. */
  112. static inline PDL_LIST dl_list_remove(PDL_LIST pDel)
  113. {
  114. if (pDel->pNext)
  115. pDel->pNext->pPrev = pDel->pPrev;
  116. if (pDel->pPrev)
  117. pDel->pPrev->pNext = pDel->pNext;
  118. /* point back to itself just to be safe, if remove is called again */
  119. pDel->pNext = pDel;
  120. pDel->pPrev = pDel;
  121. return pDel;
  122. }
  123. /*
  124. * dl_list_remove_item_from_head - get a list item from the head
  125. */
  126. static inline PDL_LIST dl_list_remove_item_from_head(PDL_LIST pList)
  127. {
  128. PDL_LIST pItem = NULL;
  129. if (pList->pNext != pList) {
  130. pItem = pList->pNext;
  131. /* remove the first item from head */
  132. dl_list_remove(pItem);
  133. }
  134. return pItem;
  135. }
  136. static inline PDL_LIST dl_list_remove_item_from_tail(PDL_LIST pList)
  137. {
  138. PDL_LIST pItem = NULL;
  139. if (pList->pPrev != pList) {
  140. pItem = pList->pPrev;
  141. /* remove the item from tail */
  142. dl_list_remove(pItem);
  143. }
  144. return pItem;
  145. }
  146. /* transfer src list items to the tail of the destination list */
  147. static inline void dl_list_transfer_items_to_tail(PDL_LIST pDest, PDL_LIST pSrc)
  148. {
  149. /* only concatenate if src is not empty */
  150. if (!DL_LIST_IS_EMPTY(pSrc)) {
  151. /* cut out circular list in src and re-attach to end of dest */
  152. pSrc->pPrev->pNext = pDest;
  153. pSrc->pNext->pPrev = pDest->pPrev;
  154. pDest->pPrev->pNext = pSrc->pNext;
  155. pDest->pPrev = pSrc->pPrev;
  156. /* terminate src list, it is now empty */
  157. pSrc->pPrev = pSrc;
  158. pSrc->pNext = pSrc;
  159. }
  160. }
  161. /* transfer src list items to the head of the destination list */
  162. static inline void dl_list_transfer_items_to_head(PDL_LIST pDest, PDL_LIST pSrc)
  163. {
  164. /* only concatenate if src is not empty */
  165. if (!DL_LIST_IS_EMPTY(pSrc)) {
  166. /* cut out circular list in src and reattach to start of dest */
  167. pSrc->pNext->pPrev = pDest;
  168. pDest->pNext->pPrev = pSrc->pPrev;
  169. pSrc->pPrev->pNext = pDest->pNext;
  170. pDest->pNext = pSrc->pNext;
  171. /* terminate src list, it is now empty */
  172. pSrc->pPrev = pSrc;
  173. pSrc->pNext = pSrc;
  174. }
  175. }
  176. #endif /* __DL_LIST_H___ */