maple_tree.rst 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. .. SPDX-License-Identifier: GPL-2.0+
  2. ==========
  3. Maple Tree
  4. ==========
  5. :Author: Liam R. Howlett
  6. Overview
  7. ========
  8. The Maple Tree is a B-Tree data type which is optimized for storing
  9. non-overlapping ranges, including ranges of size 1. The tree was designed to
  10. be simple to use and does not require a user written search method. It
  11. supports iterating over a range of entries and going to the previous or next
  12. entry in a cache-efficient manner. The tree can also be put into an RCU-safe
  13. mode of operation which allows reading and writing concurrently. Writers must
  14. synchronize on a lock, which can be the default spinlock, or the user can set
  15. the lock to an external lock of a different type.
  16. The Maple Tree maintains a small memory footprint and was designed to use
  17. modern processor cache efficiently. The majority of the users will be able to
  18. use the normal API. An :ref:`maple-tree-advanced-api` exists for more complex
  19. scenarios. The most important usage of the Maple Tree is the tracking of the
  20. virtual memory areas.
  21. The Maple Tree can store values between ``0`` and ``ULONG_MAX``. The Maple
  22. Tree reserves values with the bottom two bits set to '10' which are below 4096
  23. (ie 2, 6, 10 .. 4094) for internal use. If the entries may use reserved
  24. entries then the users can convert the entries using xa_mk_value() and convert
  25. them back by calling xa_to_value(). If the user needs to use a reserved
  26. value, then the user can convert the value when using the
  27. :ref:`maple-tree-advanced-api`, but are blocked by the normal API.
  28. The Maple Tree can also be configured to support searching for a gap of a given
  29. size (or larger).
  30. Pre-allocating of nodes is also supported using the
  31. :ref:`maple-tree-advanced-api`. This is useful for users who must guarantee a
  32. successful store operation within a given
  33. code segment when allocating cannot be done. Allocations of nodes are
  34. relatively small at around 256 bytes.
  35. .. _maple-tree-normal-api:
  36. Normal API
  37. ==========
  38. Start by initialising a maple tree, either with DEFINE_MTREE() for statically
  39. allocated maple trees or mt_init() for dynamically allocated ones. A
  40. freshly-initialised maple tree contains a ``NULL`` pointer for the range ``0``
  41. - ``ULONG_MAX``. There are currently two types of maple trees supported: the
  42. allocation tree and the regular tree. The regular tree has a higher branching
  43. factor for internal nodes. The allocation tree has a lower branching factor
  44. but allows the user to search for a gap of a given size or larger from either
  45. ``0`` upwards or ``ULONG_MAX`` down. An allocation tree can be used by
  46. passing in the ``MT_FLAGS_ALLOC_RANGE`` flag when initialising the tree.
  47. You can then set entries using mtree_store() or mtree_store_range().
  48. mtree_store() will overwrite any entry with the new entry and return 0 on
  49. success or an error code otherwise. mtree_store_range() works in the same way
  50. but takes a range. mtree_load() is used to retrieve the entry stored at a
  51. given index. You can use mtree_erase() to erase an entire range by only
  52. knowing one value within that range, or mtree_store() call with an entry of
  53. NULL may be used to partially erase a range or many ranges at once.
  54. If you want to only store a new entry to a range (or index) if that range is
  55. currently ``NULL``, you can use mtree_insert_range() or mtree_insert() which
  56. return -EEXIST if the range is not empty.
  57. You can search for an entry from an index upwards by using mt_find().
  58. You can walk each entry within a range by calling mt_for_each(). You must
  59. provide a temporary variable to store a cursor. If you want to walk each
  60. element of the tree then ``0`` and ``ULONG_MAX`` may be used as the range. If
  61. the caller is going to hold the lock for the duration of the walk then it is
  62. worth looking at the mas_for_each() API in the :ref:`maple-tree-advanced-api`
  63. section.
  64. Sometimes it is necessary to ensure the next call to store to a maple tree does
  65. not allocate memory, please see :ref:`maple-tree-advanced-api` for this use case.
  66. You can use mtree_dup() to duplicate an entire maple tree. It is a more
  67. efficient way than inserting all elements one by one into a new tree.
  68. Finally, you can remove all entries from a maple tree by calling
  69. mtree_destroy(). If the maple tree entries are pointers, you may wish to free
  70. the entries first.
  71. Allocating Nodes
  72. ----------------
  73. The allocations are handled by the internal tree code. See
  74. :ref:`maple-tree-advanced-alloc` for other options.
  75. Locking
  76. -------
  77. You do not have to worry about locking. See :ref:`maple-tree-advanced-locks`
  78. for other options.
  79. The Maple Tree uses RCU and an internal spinlock to synchronise access:
  80. Takes RCU read lock:
  81. * mtree_load()
  82. * mt_find()
  83. * mt_for_each()
  84. * mt_next()
  85. * mt_prev()
  86. Takes ma_lock internally:
  87. * mtree_store()
  88. * mtree_store_range()
  89. * mtree_insert()
  90. * mtree_insert_range()
  91. * mtree_erase()
  92. * mtree_dup()
  93. * mtree_destroy()
  94. * mt_set_in_rcu()
  95. * mt_clear_in_rcu()
  96. If you want to take advantage of the internal lock to protect the data
  97. structures that you are storing in the Maple Tree, you can call mtree_lock()
  98. before calling mtree_load(), then take a reference count on the object you
  99. have found before calling mtree_unlock(). This will prevent stores from
  100. removing the object from the tree between looking up the object and
  101. incrementing the refcount. You can also use RCU to avoid dereferencing
  102. freed memory, but an explanation of that is beyond the scope of this
  103. document.
  104. .. _maple-tree-advanced-api:
  105. Advanced API
  106. ============
  107. The advanced API offers more flexibility and better performance at the
  108. cost of an interface which can be harder to use and has fewer safeguards.
  109. You must take care of your own locking while using the advanced API.
  110. You can use the ma_lock, RCU or an external lock for protection.
  111. You can mix advanced and normal operations on the same array, as long
  112. as the locking is compatible. The :ref:`maple-tree-normal-api` is implemented
  113. in terms of the advanced API.
  114. The advanced API is based around the ma_state, this is where the 'mas'
  115. prefix originates. The ma_state struct keeps track of tree operations to make
  116. life easier for both internal and external tree users.
  117. Initialising the maple tree is the same as in the :ref:`maple-tree-normal-api`.
  118. Please see above.
  119. The maple state keeps track of the range start and end in mas->index and
  120. mas->last, respectively.
  121. mas_walk() will walk the tree to the location of mas->index and set the
  122. mas->index and mas->last according to the range for the entry.
  123. You can set entries using mas_store(). mas_store() will overwrite any entry
  124. with the new entry and return the first existing entry that is overwritten.
  125. The range is passed in as members of the maple state: index and last.
  126. You can use mas_erase() to erase an entire range by setting index and
  127. last of the maple state to the desired range to erase. This will erase
  128. the first range that is found in that range, set the maple state index
  129. and last as the range that was erased and return the entry that existed
  130. at that location.
  131. You can walk each entry within a range by using mas_for_each(). If you want
  132. to walk each element of the tree then ``0`` and ``ULONG_MAX`` may be used as
  133. the range. If the lock needs to be periodically dropped, see the locking
  134. section mas_pause().
  135. Using a maple state allows mas_next() and mas_prev() to function as if the
  136. tree was a linked list. With such a high branching factor the amortized
  137. performance penalty is outweighed by cache optimization. mas_next() will
  138. return the next entry which occurs after the entry at index. mas_prev()
  139. will return the previous entry which occurs before the entry at index.
  140. mas_find() will find the first entry which exists at or above index on
  141. the first call, and the next entry from every subsequent calls.
  142. mas_find_rev() will find the first entry which exists at or below the last on
  143. the first call, and the previous entry from every subsequent calls.
  144. If the user needs to yield the lock during an operation, then the maple state
  145. must be paused using mas_pause().
  146. There are a few extra interfaces provided when using an allocation tree.
  147. If you wish to search for a gap within a range, then mas_empty_area()
  148. or mas_empty_area_rev() can be used. mas_empty_area() searches for a gap
  149. starting at the lowest index given up to the maximum of the range.
  150. mas_empty_area_rev() searches for a gap starting at the highest index given
  151. and continues downward to the lower bound of the range.
  152. .. _maple-tree-advanced-alloc:
  153. Advanced Allocating Nodes
  154. -------------------------
  155. Allocations are usually handled internally to the tree, however if allocations
  156. need to occur before a write occurs then calling mas_expected_entries() will
  157. allocate the worst-case number of needed nodes to insert the provided number of
  158. ranges. This also causes the tree to enter mass insertion mode. Once
  159. insertions are complete calling mas_destroy() on the maple state will free the
  160. unused allocations.
  161. .. _maple-tree-advanced-locks:
  162. Advanced Locking
  163. ----------------
  164. The maple tree uses a spinlock by default, but external locks can be used for
  165. tree updates as well. To use an external lock, the tree must be initialized
  166. with the ``MT_FLAGS_LOCK_EXTERN flag``, this is usually done with the
  167. MTREE_INIT_EXT() #define, which takes an external lock as an argument.
  168. Functions and structures
  169. ========================
  170. .. kernel-doc:: include/linux/maple_tree.h
  171. .. kernel-doc:: lib/maple_tree.c