list_sort.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/compiler.h>
  3. #include <linux/export.h>
  4. #include <linux/list_sort.h>
  5. #include <linux/list.h>
  6. /*
  7. * Returns a list organized in an intermediate format suited
  8. * to chaining of merge() calls: null-terminated, no reserved or
  9. * sentinel head node, "prev" links not maintained.
  10. */
  11. __attribute__((nonnull(2,3,4)))
  12. static struct list_head *merge(void *priv, list_cmp_func_t cmp,
  13. struct list_head *a, struct list_head *b)
  14. {
  15. struct list_head *head, **tail = &head;
  16. for (;;) {
  17. /* if equal, take 'a' -- important for sort stability */
  18. if (cmp(priv, a, b) <= 0) {
  19. *tail = a;
  20. tail = &a->next;
  21. a = a->next;
  22. if (!a) {
  23. *tail = b;
  24. break;
  25. }
  26. } else {
  27. *tail = b;
  28. tail = &b->next;
  29. b = b->next;
  30. if (!b) {
  31. *tail = a;
  32. break;
  33. }
  34. }
  35. }
  36. return head;
  37. }
  38. /*
  39. * Combine final list merge with restoration of standard doubly-linked
  40. * list structure. This approach duplicates code from merge(), but
  41. * runs faster than the tidier alternatives of either a separate final
  42. * prev-link restoration pass, or maintaining the prev links
  43. * throughout.
  44. */
  45. __attribute__((nonnull(2,3,4,5)))
  46. static void merge_final(void *priv, list_cmp_func_t cmp, struct list_head *head,
  47. struct list_head *a, struct list_head *b)
  48. {
  49. struct list_head *tail = head;
  50. u8 count = 0;
  51. for (;;) {
  52. /* if equal, take 'a' -- important for sort stability */
  53. if (cmp(priv, a, b) <= 0) {
  54. tail->next = a;
  55. a->prev = tail;
  56. tail = a;
  57. a = a->next;
  58. if (!a)
  59. break;
  60. } else {
  61. tail->next = b;
  62. b->prev = tail;
  63. tail = b;
  64. b = b->next;
  65. if (!b) {
  66. b = a;
  67. break;
  68. }
  69. }
  70. }
  71. /* Finish linking remainder of list b on to tail */
  72. tail->next = b;
  73. do {
  74. /*
  75. * If the merge is highly unbalanced (e.g. the input is
  76. * already sorted), this loop may run many iterations.
  77. * Continue callbacks to the client even though no
  78. * element comparison is needed, so the client's cmp()
  79. * routine can invoke cond_resched() periodically.
  80. */
  81. if (unlikely(!++count))
  82. cmp(priv, b, b);
  83. b->prev = tail;
  84. tail = b;
  85. b = b->next;
  86. } while (b);
  87. /* And the final links to make a circular doubly-linked list */
  88. tail->next = head;
  89. head->prev = tail;
  90. }
  91. /**
  92. * list_sort - sort a list
  93. * @priv: private data, opaque to list_sort(), passed to @cmp
  94. * @head: the list to sort
  95. * @cmp: the elements comparison function
  96. *
  97. * The comparison function @cmp must return > 0 if @a should sort after
  98. * @b ("@a > @b" if you want an ascending sort), and <= 0 if @a should
  99. * sort before @b *or* their original order should be preserved. It is
  100. * always called with the element that came first in the input in @a,
  101. * and list_sort is a stable sort, so it is not necessary to distinguish
  102. * the @a < @b and @a == @b cases.
  103. *
  104. * The comparison function must adhere to specific mathematical properties
  105. * to ensure correct and stable sorting:
  106. * - Antisymmetry: cmp(@a, @b) must return the opposite sign of
  107. * cmp(@b, @a).
  108. * - Transitivity: if cmp(@a, @b) <= 0 and cmp(@b, @c) <= 0, then
  109. * cmp(@a, @c) <= 0.
  110. *
  111. * This is compatible with two styles of @cmp function:
  112. * - The traditional style which returns <0 / =0 / >0, or
  113. * - Returning a boolean 0/1.
  114. * The latter offers a chance to save a few cycles in the comparison
  115. * (which is used by e.g. plug_ctx_cmp() in block/blk-mq.c).
  116. *
  117. * A good way to write a multi-word comparison is::
  118. *
  119. * if (a->high != b->high)
  120. * return a->high > b->high;
  121. * if (a->middle != b->middle)
  122. * return a->middle > b->middle;
  123. * return a->low > b->low;
  124. *
  125. *
  126. * This mergesort is as eager as possible while always performing at least
  127. * 2:1 balanced merges. Given two pending sublists of size 2^k, they are
  128. * merged to a size-2^(k+1) list as soon as we have 2^k following elements.
  129. *
  130. * Thus, it will avoid cache thrashing as long as 3*2^k elements can
  131. * fit into the cache. Not quite as good as a fully-eager bottom-up
  132. * mergesort, but it does use 0.2*n fewer comparisons, so is faster in
  133. * the common case that everything fits into L1.
  134. *
  135. *
  136. * The merging is controlled by "count", the number of elements in the
  137. * pending lists. This is beautifully simple code, but rather subtle.
  138. *
  139. * Each time we increment "count", we set one bit (bit k) and clear
  140. * bits k-1 .. 0. Each time this happens (except the very first time
  141. * for each bit, when count increments to 2^k), we merge two lists of
  142. * size 2^k into one list of size 2^(k+1).
  143. *
  144. * This merge happens exactly when the count reaches an odd multiple of
  145. * 2^k, which is when we have 2^k elements pending in smaller lists,
  146. * so it's safe to merge away two lists of size 2^k.
  147. *
  148. * After this happens twice, we have created two lists of size 2^(k+1),
  149. * which will be merged into a list of size 2^(k+2) before we create
  150. * a third list of size 2^(k+1), so there are never more than two pending.
  151. *
  152. * The number of pending lists of size 2^k is determined by the
  153. * state of bit k of "count" plus two extra pieces of information:
  154. *
  155. * - The state of bit k-1 (when k == 0, consider bit -1 always set), and
  156. * - Whether the higher-order bits are zero or non-zero (i.e.
  157. * is count >= 2^(k+1)).
  158. *
  159. * There are six states we distinguish. "x" represents some arbitrary
  160. * bits, and "y" represents some arbitrary non-zero bits:
  161. * 0: 00x: 0 pending of size 2^k; x pending of sizes < 2^k
  162. * 1: 01x: 0 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
  163. * 2: x10x: 0 pending of size 2^k; 2^k + x pending of sizes < 2^k
  164. * 3: x11x: 1 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
  165. * 4: y00x: 1 pending of size 2^k; 2^k + x pending of sizes < 2^k
  166. * 5: y01x: 2 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
  167. * (merge and loop back to state 2)
  168. *
  169. * We gain lists of size 2^k in the 2->3 and 4->5 transitions (because
  170. * bit k-1 is set while the more significant bits are non-zero) and
  171. * merge them away in the 5->2 transition. Note in particular that just
  172. * before the 5->2 transition, all lower-order bits are 11 (state 3),
  173. * so there is one list of each smaller size.
  174. *
  175. * When we reach the end of the input, we merge all the pending
  176. * lists, from smallest to largest. If you work through cases 2 to
  177. * 5 above, you can see that the number of elements we merge with a list
  178. * of size 2^k varies from 2^(k-1) (cases 3 and 5 when x == 0) to
  179. * 2^(k+1) - 1 (second merge of case 5 when x == 2^(k-1) - 1).
  180. */
  181. __attribute__((nonnull(2,3)))
  182. void list_sort(void *priv, struct list_head *head, list_cmp_func_t cmp)
  183. {
  184. struct list_head *list = head->next, *pending = NULL;
  185. size_t count = 0; /* Count of pending */
  186. if (list == head->prev) /* Zero or one elements */
  187. return;
  188. /* Convert to a null-terminated singly-linked list. */
  189. head->prev->next = NULL;
  190. /*
  191. * Data structure invariants:
  192. * - All lists are singly linked and null-terminated; prev
  193. * pointers are not maintained.
  194. * - pending is a prev-linked "list of lists" of sorted
  195. * sublists awaiting further merging.
  196. * - Each of the sorted sublists is power-of-two in size.
  197. * - Sublists are sorted by size and age, smallest & newest at front.
  198. * - There are zero to two sublists of each size.
  199. * - A pair of pending sublists are merged as soon as the number
  200. * of following pending elements equals their size (i.e.
  201. * each time count reaches an odd multiple of that size).
  202. * That ensures each later final merge will be at worst 2:1.
  203. * - Each round consists of:
  204. * - Merging the two sublists selected by the highest bit
  205. * which flips when count is incremented, and
  206. * - Adding an element from the input as a size-1 sublist.
  207. */
  208. do {
  209. size_t bits;
  210. struct list_head **tail = &pending;
  211. /* Find the least-significant clear bit in count */
  212. for (bits = count; bits & 1; bits >>= 1)
  213. tail = &(*tail)->prev;
  214. /* Do the indicated merge */
  215. if (likely(bits)) {
  216. struct list_head *a = *tail, *b = a->prev;
  217. a = merge(priv, cmp, b, a);
  218. /* Install the merged result in place of the inputs */
  219. a->prev = b->prev;
  220. *tail = a;
  221. }
  222. /* Move one element from input list to pending */
  223. list->prev = pending;
  224. pending = list;
  225. list = list->next;
  226. pending->next = NULL;
  227. count++;
  228. } while (list);
  229. /* End of input; merge together all the pending lists. */
  230. list = pending;
  231. pending = pending->prev;
  232. for (;;) {
  233. struct list_head *next = pending->prev;
  234. if (!next)
  235. break;
  236. list = merge(priv, cmp, pending, list);
  237. pending = next;
  238. }
  239. /* The final merge, rebuilding prev links */
  240. merge_final(priv, cmp, head, pending, list);
  241. }
  242. EXPORT_SYMBOL(list_sort);