dl_list.h 5.9 KB

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