list.h 18 KB

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