vdma_list.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. #ifndef __VDMA_LIST_H
  2. #define __VDMA_LIST_H
  3. #define container_of(ptr, type, member) ({ \
  4. const __typeof__( ((type *)0)->member ) *__mptr = (ptr); \
  5. (type *)( (char *)__mptr - offsetof(type,member) );})
  6. struct list_head {
  7. struct list_head *next, *prev;
  8. };
  9. #define LIST_POISON1 ((void *) 0xaa100100)
  10. #define LIST_POISON2 ((void *) 0x55200200)
  11. /*
  12. * Simple doubly linked list implementation.
  13. *
  14. * Some of the internal functions ("__xxx") are useful when
  15. * manipulating whole lists rather than single entries, as
  16. * sometimes we already know the next/prev entries and we can
  17. * generate better code by using them directly rather than
  18. * using the generic single-entry routines.
  19. */
  20. #define LIST_HEAD_INIT(name) { &(name), &(name) }
  21. #define LIST_HEAD(name) \
  22. struct list_head name = LIST_HEAD_INIT(name)
  23. static inline void INIT_LIST_HEAD(struct list_head *list)
  24. {
  25. list->next = list;
  26. list->prev = list;
  27. }
  28. /*
  29. * Insert a new entry between two known consecutive entries.
  30. *
  31. * This is only for internal list manipulation where we know
  32. * the prev/next entries already!
  33. */
  34. static inline void __list_add(struct list_head *new,
  35. struct list_head *prev,
  36. struct list_head *next)
  37. {
  38. next->prev = new;
  39. new->next = next;
  40. new->prev = prev;
  41. prev->next = new;
  42. }
  43. /**
  44. * list_add - add a new entry
  45. * @new: new entry to be added
  46. * @head: list head to add it after
  47. *
  48. * Insert a new entry after the specified head.
  49. * This is good for implementing stacks.
  50. */
  51. static inline void list_add(struct list_head *new, struct list_head *head)
  52. {
  53. __list_add(new, head, head->next);
  54. }
  55. /**
  56. * list_add_tail - add a new entry
  57. * @new: new entry to be added
  58. * @head: list head to add it before
  59. *
  60. * Insert a new entry before the specified head.
  61. * This is useful for implementing queues.
  62. */
  63. static inline void list_add_tail(struct list_head *new, struct list_head *head)
  64. {
  65. __list_add(new, head->prev, head);
  66. }
  67. /*
  68. * Delete a list entry by making the prev/next entries
  69. * point to each other.
  70. *
  71. * This is only for internal list manipulation where we know
  72. * the prev/next entries already!
  73. */
  74. static inline void __list_del(struct list_head * prev, struct list_head * next)
  75. {
  76. next->prev = prev;
  77. prev->next = next;
  78. }
  79. /**
  80. * list_del - deletes entry from list.
  81. * @entry: the element to delete from the list.
  82. * Note: list_empty() on entry does not return true after this, the entry is
  83. * in an undefined state.
  84. */
  85. static inline void __list_del_entry(struct list_head *entry)
  86. {
  87. __list_del(entry->prev, entry->next);
  88. }
  89. static inline void list_del(struct list_head *entry)
  90. {
  91. __list_del(entry->prev, entry->next);
  92. entry->next = LIST_POISON1;
  93. entry->prev = LIST_POISON2;
  94. }
  95. /**
  96. * list_replace - replace old entry by new one
  97. * @old : the element to be replaced
  98. * @new : the new element to insert
  99. *
  100. * If @old was empty, it will be overwritten.
  101. */
  102. static inline void list_replace(struct list_head *old,
  103. struct list_head *new)
  104. {
  105. new->next = old->next;
  106. new->next->prev = new;
  107. new->prev = old->prev;
  108. new->prev->next = new;
  109. }
  110. static inline void list_replace_init(struct list_head *old,
  111. struct list_head *new)
  112. {
  113. list_replace(old, new);
  114. INIT_LIST_HEAD(old);
  115. }
  116. /**
  117. * list_del_init - deletes entry from list and reinitialize it.
  118. * @entry: the element to delete from the list.
  119. */
  120. static inline void list_del_init(struct list_head *entry)
  121. {
  122. __list_del_entry(entry);
  123. INIT_LIST_HEAD(entry);
  124. }
  125. /**
  126. * list_move - delete from one list and add as another's head
  127. * @list: the entry to move
  128. * @head: the head that will precede our entry
  129. */
  130. static inline void list_move(struct list_head *list, struct list_head *head)
  131. {
  132. __list_del_entry(list);
  133. list_add(list, head);
  134. }
  135. /**
  136. * list_move_tail - delete from one list and add as another's tail
  137. * @list: the entry to move
  138. * @head: the head that will follow our entry
  139. */
  140. static inline void list_move_tail(struct list_head *list,
  141. struct list_head *head)
  142. {
  143. __list_del_entry(list);
  144. list_add_tail(list, head);
  145. }
  146. /**
  147. * list_is_last - tests whether @list is the last entry in list @head
  148. * @list: the entry to test
  149. * @head: the head of the list
  150. */
  151. static inline int list_is_last(const struct list_head *list,
  152. const struct list_head *head)
  153. {
  154. return list->next == head;
  155. }
  156. /**
  157. * list_empty - tests whether a list is empty
  158. * @head: the list to test.
  159. */
  160. static inline int list_empty(const struct list_head *head)
  161. {
  162. return head->next == head;
  163. }
  164. /**
  165. * list_empty_careful - tests whether a list is empty and not being modified
  166. * @head: the list to test
  167. *
  168. * Description:
  169. * tests whether a list is empty _and_ checks that no other CPU might be
  170. * in the process of modifying either member (next or prev)
  171. *
  172. * NOTE: using list_empty_careful() without synchronization
  173. * can only be safe if the only activity that can happen
  174. * to the list entry is list_del_init(). Eg. it cannot be used
  175. * if another CPU could re-list_add() it.
  176. */
  177. static inline int list_empty_careful(const struct list_head *head)
  178. {
  179. struct list_head *next = head->next;
  180. return (next == head) && (next == head->prev);
  181. }
  182. /**
  183. * list_rotate_left - rotate the list to the left
  184. * @head: the head of the list
  185. */
  186. static inline void list_rotate_left(struct list_head *head)
  187. {
  188. struct list_head *first;
  189. if (!list_empty(head)) {
  190. first = head->next;
  191. list_move_tail(first, head);
  192. }
  193. }
  194. /**
  195. * list_is_singular - tests whether a list has just one entry.
  196. * @head: the list to test.
  197. */
  198. static inline int list_is_singular(const struct list_head *head)
  199. {
  200. return !list_empty(head) && (head->next == head->prev);
  201. }
  202. static inline void __list_cut_position(struct list_head *list,
  203. struct list_head *head, struct list_head *entry)
  204. {
  205. struct list_head *new_first = entry->next;
  206. list->next = head->next;
  207. list->next->prev = list;
  208. list->prev = entry;
  209. entry->next = list;
  210. head->next = new_first;
  211. new_first->prev = head;
  212. }
  213. /**
  214. * list_cut_position - cut a list into two
  215. * @list: a new list to add all removed entries
  216. * @head: a list with entries
  217. * @entry: an entry within head, could be the head itself
  218. * and if so we won't cut the list
  219. *
  220. * This helper moves the initial part of @head, up to and
  221. * including @entry, from @head to @list. You should
  222. * pass on @entry an element you know is on @head. @list
  223. * should be an empty list or a list you do not care about
  224. * losing its data.
  225. *
  226. */
  227. static inline void list_cut_position(struct list_head *list,
  228. struct list_head *head, struct list_head *entry)
  229. {
  230. if (list_empty(head))
  231. return;
  232. if (list_is_singular(head) &&
  233. (head->next != entry && head != entry))
  234. return;
  235. if (entry == head)
  236. INIT_LIST_HEAD(list);
  237. else
  238. __list_cut_position(list, head, entry);
  239. }
  240. static inline void __list_splice(const struct list_head *list,
  241. struct list_head *prev,
  242. struct list_head *next)
  243. {
  244. struct list_head *first = list->next;
  245. struct list_head *last = list->prev;
  246. first->prev = prev;
  247. prev->next = first;
  248. last->next = next;
  249. next->prev = last;
  250. }
  251. /**
  252. * list_splice - join two lists, this is designed for stacks
  253. * @list: the new list to add.
  254. * @head: the place to add it in the first list.
  255. */
  256. static inline void list_splice(const struct list_head *list,
  257. struct list_head *head)
  258. {
  259. if (!list_empty(list))
  260. __list_splice(list, head, head->next);
  261. }
  262. /**
  263. * list_splice_tail - join two lists, each list being a queue
  264. * @list: the new list to add.
  265. * @head: the place to add it in the first list.
  266. */
  267. static inline void list_splice_tail(struct list_head *list,
  268. struct list_head *head)
  269. {
  270. if (!list_empty(list))
  271. __list_splice(list, head->prev, head);
  272. }
  273. /**
  274. * list_splice_init - join two lists and reinitialise the emptied list.
  275. * @list: the new list to add.
  276. * @head: the place to add it in the first list.
  277. *
  278. * The list at @list is reinitialised
  279. */
  280. static inline void list_splice_init(struct list_head *list,
  281. struct list_head *head)
  282. {
  283. if (!list_empty(list)) {
  284. __list_splice(list, head, head->next);
  285. INIT_LIST_HEAD(list);
  286. }
  287. }
  288. /**
  289. * list_splice_tail_init - join two lists and reinitialise the emptied list
  290. * @list: the new list to add.
  291. * @head: the place to add it in the first list.
  292. *
  293. * Each of the lists is a queue.
  294. * The list at @list is reinitialised
  295. */
  296. static inline void list_splice_tail_init(struct list_head *list,
  297. struct list_head *head)
  298. {
  299. if (!list_empty(list)) {
  300. __list_splice(list, head->prev, head);
  301. INIT_LIST_HEAD(list);
  302. }
  303. }
  304. /**
  305. * list_entry - get the struct for this entry
  306. * @ptr: the &struct list_head pointer.
  307. * @type: the type of the struct this is embedded in.
  308. * @member: the name of the list_struct within the struct.
  309. */
  310. #define list_entry(ptr, type, member) \
  311. container_of(ptr, type, member)
  312. /**
  313. * list_first_entry - get the first element from a list
  314. * @ptr: the list head to take the element from.
  315. * @type: the type of the struct this is embedded in.
  316. * @member: the name of the list_struct within the struct.
  317. *
  318. * Note, that list is expected to be not empty.
  319. */
  320. #define list_first_entry(ptr, type, member) \
  321. list_entry((ptr)->next, type, member)
  322. /**
  323. * list_for_each - iterate over a list
  324. * @pos: the &struct list_head to use as a loop cursor.
  325. * @head: the head for your list.
  326. */
  327. #define list_for_each(pos, head) \
  328. for (pos = (head)->next; pos != (head); pos = pos->next)
  329. /**
  330. * __list_for_each - iterate over a list
  331. * @pos: the &struct list_head to use as a loop cursor.
  332. * @head: the head for your list.
  333. *
  334. * This variant doesn't differ from list_for_each() any more.
  335. * We don't do prefetching in either case.
  336. */
  337. #define __list_for_each(pos, head) \
  338. for (pos = (head)->next; pos != (head); pos = pos->next)
  339. /**
  340. * list_for_each_prev - iterate over a list backwards
  341. * @pos: the &struct list_head to use as a loop cursor.
  342. * @head: the head for your list.
  343. */
  344. #define list_for_each_prev(pos, head) \
  345. for (pos = (head)->prev; pos != (head); pos = pos->prev)
  346. /**
  347. * list_for_each_safe - iterate over a list safe against removal of list entry
  348. * @pos: the &struct list_head to use as a loop cursor.
  349. * @n: another &struct list_head to use as temporary storage
  350. * @head: the head for your list.
  351. */
  352. #define list_for_each_safe(pos, n, head) \
  353. for (pos = (head)->next, n = pos->next; pos != (head); \
  354. pos = n, n = pos->next)
  355. /**
  356. * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
  357. * @pos: the &struct list_head to use as a loop cursor.
  358. * @n: another &struct list_head to use as temporary storage
  359. * @head: the head for your list.
  360. */
  361. #define list_for_each_prev_safe(pos, n, head) \
  362. for (pos = (head)->prev, n = pos->prev; \
  363. pos != (head); \
  364. pos = n, n = pos->prev)
  365. /**
  366. * list_for_each_entry - iterate over list of given type
  367. * @pos: the type * to use as a loop cursor.
  368. * @head: the head for your list.
  369. * @member: the name of the list_struct within the struct.
  370. */
  371. #define list_for_each_entry(pos, head, member) \
  372. for (pos = list_entry((head)->next, __typeof__(*pos), member); \
  373. &pos->member != (head); \
  374. pos = list_entry(pos->member.next, __typeof__(*pos), member))
  375. /**
  376. * list_for_each_entry_reverse - iterate backwards over list of given type.
  377. * @pos: the type * to use as a loop cursor.
  378. * @head: the head for your list.
  379. * @member: the name of the list_struct within the struct.
  380. */
  381. #define list_for_each_entry_reverse(pos, head, member) \
  382. for (pos = list_entry((head)->prev, __typeof__(*pos), member); \
  383. &pos->member != (head); \
  384. pos = list_entry(pos->member.prev, __typeof__(*pos), member))
  385. /**
  386. * list_prepare_entry - prepare a pos entry for use in list_for_each_entry_continue()
  387. * @pos: the type * to use as a start point
  388. * @head: the head of the list
  389. * @member: the name of the list_struct within the struct.
  390. *
  391. * Prepares a pos entry for use as a start point in list_for_each_entry_continue().
  392. */
  393. #define list_prepare_entry(pos, head, member) \
  394. ((pos) ? : list_entry(head, __typeof__(*pos), member))
  395. /**
  396. * list_for_each_entry_continue - continue iteration over list of given type
  397. * @pos: the type * to use as a loop cursor.
  398. * @head: the head for your list.
  399. * @member: the name of the list_struct within the struct.
  400. *
  401. * Continue to iterate over list of given type, continuing after
  402. * the current position.
  403. */
  404. #define list_for_each_entry_continue(pos, head, member) \
  405. for (pos = list_entry(pos->member.next, __typeof__(*pos), member); \
  406. &pos->member != (head); \
  407. pos = list_entry(pos->member.next, __typeof__(*pos), member))
  408. /**
  409. * list_for_each_entry_continue_reverse - iterate backwards from the given point
  410. * @pos: the type * to use as a loop cursor.
  411. * @head: the head for your list.
  412. * @member: the name of the list_struct within the struct.
  413. *
  414. * Start to iterate over list of given type backwards, continuing after
  415. * the current position.
  416. */
  417. #define list_for_each_entry_continue_reverse(pos, head, member) \
  418. for (pos = list_entry(pos->member.prev, __typeof__(*pos), member); \
  419. &pos->member != (head); \
  420. pos = list_entry(pos->member.prev, __typeof__(*pos), member))
  421. /**
  422. * list_for_each_entry_from - iterate over list of given type from the current point
  423. * @pos: the type * to use as a loop cursor.
  424. * @head: the head for your list.
  425. * @member: the name of the list_struct within the struct.
  426. *
  427. * Iterate over list of given type, continuing from current position.
  428. */
  429. #define list_for_each_entry_from(pos, head, member) \
  430. for (; &pos->member != (head); \
  431. pos = list_entry(pos->member.next, __typeof__(*pos), member))
  432. /**
  433. * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
  434. * @pos: the type * to use as a loop cursor.
  435. * @n: another type * to use as temporary storage
  436. * @head: the head for your list.
  437. * @member: the name of the list_struct within the struct.
  438. */
  439. #define list_for_each_entry_safe(pos, n, head, member) \
  440. for (pos = list_entry((head)->next, __typeof__(*pos), member), \
  441. n = list_entry(pos->member.next, __typeof__(*pos), member); \
  442. &pos->member != (head); \
  443. pos = n, n = list_entry(n->member.next, __typeof__(*n), member))
  444. /**
  445. * list_for_each_entry_safe_continue - continue list iteration safe against removal
  446. * @pos: the type * to use as a loop cursor.
  447. * @n: another type * to use as temporary storage
  448. * @head: the head for your list.
  449. * @member: the name of the list_struct within the struct.
  450. *
  451. * Iterate over list of given type, continuing after current point,
  452. * safe against removal of list entry.
  453. */
  454. #define list_for_each_entry_safe_continue(pos, n, head, member) \
  455. for (pos = list_entry(pos->member.next, __typeof__(*pos), member), \
  456. n = list_entry(pos->member.next, __typeof__(*pos), member); \
  457. &pos->member != (head); \
  458. pos = n, n = list_entry(n->member.next, __typeof__(*n), member))
  459. /**
  460. * list_for_each_entry_safe_from - iterate over list from current point safe against removal
  461. * @pos: the type * to use as a loop cursor.
  462. * @n: another type * to use as temporary storage
  463. * @head: the head for your list.
  464. * @member: the name of the list_struct within the struct.
  465. *
  466. * Iterate over list of given type from current point, safe against
  467. * removal of list entry.
  468. */
  469. #define list_for_each_entry_safe_from(pos, n, head, member) \
  470. for (n = list_entry(pos->member.next, __typeof__(*pos), member); \
  471. &pos->member != (head); \
  472. pos = n, n = list_entry(n->member.next, __typeof__(*n), member))
  473. /**
  474. * list_for_each_entry_safe_reverse - iterate backwards over list safe against removal
  475. * @pos: the type * to use as a loop cursor.
  476. * @n: another type * to use as temporary storage
  477. * @head: the head for your list.
  478. * @member: the name of the list_struct within the struct.
  479. *
  480. * Iterate backwards over list of given type, safe against removal
  481. * of list entry.
  482. */
  483. #define list_for_each_entry_safe_reverse(pos, n, head, member) \
  484. for (pos = list_entry((head)->prev, __typeof__(*pos), member), \
  485. n = list_entry(pos->member.prev, __typeof__(*pos), member); \
  486. &pos->member != (head); \
  487. pos = n, n = list_entry(n->member.prev, __typeof__(*n), member))
  488. /**
  489. * list_safe_reset_next - reset a stale list_for_each_entry_safe loop
  490. * @pos: the loop cursor used in the list_for_each_entry_safe loop
  491. * @n: temporary storage used in list_for_each_entry_safe
  492. * @member: the name of the list_struct within the struct.
  493. *
  494. * list_safe_reset_next is not safe to use in general if the list may be
  495. * modified concurrently (eg. the lock is dropped in the loop body). An
  496. * exception to this is if the cursor element (pos) is pinned in the list,
  497. * and list_safe_reset_next is called after re-taking the lock and before
  498. * completing the current iteration of the loop body.
  499. */
  500. #define list_safe_reset_next(pos, n, member) \
  501. n = list_entry(pos->member.next, __typeof__(*pos), member)
  502. #endif /*__VDMA_LIST_H*/