linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Liam Howlett <liam.howlett@oracle.com>
To: Bagas Sanjaya <bagasdotme@gmail.com>
Cc: "maple-tree@lists.infradead.org" <maple-tree@lists.infradead.org>,
	"linux-mm@kvack.org" <linux-mm@kvack.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Matthew Wilcox <willy@infradead.org>,
	David Howells <dhowells@redhat.com>,
	Sven Schnelle <svens@linux.ibm.com>
Subject: Re: [PATCH v14 01/70] Maple Tree: add new data structure
Date: Wed, 14 Sep 2022 10:16:25 +0000	[thread overview]
Message-ID: <20220914101619.gqcwedq4jv5qneck@revolver> (raw)
In-Reply-To: <Yx7w8gXqZMS+fEgc@debian.me>

* Bagas Sanjaya <bagasdotme@gmail.com> [220912 04:42]:
> On Tue, Sep 06, 2022 at 07:48:39PM +0000, Liam Howlett wrote:
> > diff --git a/Documentation/core-api/maple_tree.rst b/Documentation/core-api/maple_tree.rst
> > new file mode 100644
> > index 000000000000..45defcf15da7
> > --- /dev/null
> > +++ b/Documentation/core-api/maple_tree.rst
> > @@ -0,0 +1,217 @@
> > +.. SPDX-License-Identifier: GPL-2.0+
> > +
> > +
> > +==========
> > +Maple Tree
> > +==========
> > +
> > +:Author: Liam R. Howlett
> > +
> > +Overview
> > +========
> > +
> > +The Maple Tree is a B-Tree data type which is optimized for storing
> > +non-overlapping ranges, including ranges of size 1.  The tree was designed to
> > +be simple to use and does not require a user written search method.  It
> > +supports iterating over a range of entries and going to the previous or next
> > +entry in a cache-efficient manner.  The tree can also be put into an RCU-safe
> > +mode of operation which allows reading and writing concurrently.  Writers must
> > +synchronize on a lock, which can be the default spinlock, or the user can set
> > +the lock to an external lock of a different type.
> > +
> > +The Maple Tree maintains a small memory footprint and was designed to use
> > +modern processor cache efficiently.  The majority of the users will be able to
> > +use the normal API.  An :ref:`maple-tree-advanced-api` exists for more complex
> > +scenarios.  The most important usage of the Maple Tree is the tracking of the
> > +virtual memory areas.
> > +
> > +The Maple Tree can store values between ``0`` and ``ULONG_MAX``.  The Maple
> > +Tree reserves values with the bottom two bits set to '10' which are below 4096
> > +(ie 2, 6, 10 .. 4094) for internal use.  If the entries may use reserved
> > +entries then the users can convert the entries using xa_mk_value() and convert
> > +them back by calling xa_to_value().  If the user needs to use a reserved
> > +value, then the user can convert the value when using the
> > +:ref:`maple-tree-advanced-api`, but are blocked by the normal API.
> > +
> > +The Maple Tree can also be configured to support searching for a gap of a given
> > +size (or larger).
> > +
> > +Pre-allocating of nodes is also supported using the
> > +:ref:`maple-tree-advanced-api`.  This is useful for users who must guarantee a
> > +successful store operation within a given
> > +code segment when allocating cannot be done.  Allocations of nodes are
> > +relatively small at around 256 bytes.
> > +
> > +.. _maple-tree-normal-api:
> > +
> > +Normal API
> > +==========
> > +
> > +Start by initialising a maple tree, either with DEFINE_MTREE() for statically
> > +allocated maple trees or mt_init() for dynamically allocated ones.  A
> > +freshly-initialised maple tree contains a ``NULL`` pointer for the range ``0``
> > +- ``ULONG_MAX``.  There are currently two types of maple trees supported: the
> > +allocation tree and the regular tree.  The regular tree has a higher branching
> > +factor for internal nodes.  The allocation tree has a lower branching factor
> > +but allows the user to search for a gap of a given size or larger from either
> > +``0`` upwards or ``ULONG_MAX`` down.  An allocation tree can be used by
> > +passing in the ``MT_FLAGS_ALLOC_RANGE`` flag when initialising the tree.
> > +
> > +You can then set entries using mtree_store() or mtree_store_range().
> > +mtree_store() will overwrite any entry with the new entry and return 0 on
> > +success or an error code otherwise.  mtree_store_range() works in the same way
> > +but takes a range.  mtree_load() is used to retrieve the entry stored at a
> > +given index.  You can use mtree_erase() to erase an entire range by only
> > +knowing one value within that range, or mtree_store() call with an entry of
> > +NULL may be used to partially erase a range or many ranges at once.
> > +
> > +If you want to only store a new entry to a range (or index) if that range is
> > +currently ``NULL``, you can use mtree_insert_range() or mtree_insert() which
> > +return -EEXIST if the range is not empty.
> > +
> > +You can search for an entry from an index upwards by using mt_find().
> > +
> > +You can walk each entry within a range by calling mt_for_each().  You must
> > +provide a temporary variable to store a cursor.  If you want to walk each
> > +element of the tree then ``0`` and ``ULONG_MAX`` may be used as the range.  If
> > +the caller is going to hold the lock for the duration of the walk then it is
> > +worth looking at the mas_for_each() API in the :ref:`maple-tree-advanced-api`
> > +section.
> > +
> > +Sometimes it is necessary to ensure the next call to store to a maple tree does
> > +not allocate memory, please see :ref:`maple-tree-advanced-api` for this use case.
> > +
> > +Finally, you can remove all entries from a maple tree by calling
> > +mtree_destroy().  If the maple tree entries are pointers, you may wish to free
> > +the entries first.
> > +
> > +Allocating Nodes
> > +----------------
> > +
> > +The allocations are handled by the internal tree code.  See
> > +:ref:`maple-tree-advanced-alloc` for other options.
> > +
> > +Locking
> > +-------
> > +
> > +You do not have to worry about locking.  See :ref:`maple-tree-advanced-locks`
> > +for other options.
> > +
> > +The Maple Tree uses RCU and an internal spinlock to synchronise access:
> > +
> > +Takes RCU read lock:
> > + * mtree_load()
> > + * mt_find()
> > + * mt_for_each()
> > + * mt_next()
> > + * mt_prev()
> > +
> > +Takes ma_lock internally:
> > + * mtree_store()
> > + * mtree_store_range()
> > + * mtree_insert()
> > + * mtree_insert_range()
> > + * mtree_erase()
> > + * mtree_destroy()
> > + * mt_set_in_rcu()
> > + * mt_clear_in_rcu()
> > +
> > +If you want to take advantage of the internal lock to protect the data
> > +structures that you are storing in the Maple Tree, you can call mtree_lock()
> > +before calling mtree_load(), then take a reference count on the object you
> > +have found before calling mtree_unlock().  This will prevent stores from
> > +removing the object from the tree between looking up the object and
> > +incrementing the refcount.  You can also use RCU to avoid dereferencing
> > +freed memory, but an explanation of that is beyond the scope of this
> > +document.
> > +
> > +.. _maple-tree-advanced-api:
> > +
> > +Advanced API
> > +============
> > +
> > +The advanced API offers more flexibility and better performance at the
> > +cost of an interface which can be harder to use and has fewer safeguards.
> > +You must take care of your own locking while using the advanced API.
> > +You can use the ma_lock, RCU or an external lock for protection.
> > +You can mix advanced and normal operations on the same array, as long
> > +as the locking is compatible.  The :ref:`maple-tree-normal-api` is implemented
> > +in terms of the advanced API.
> > +
> > +The advanced API is based around the ma_state, this is where the 'mas'
> > +prefix originates.  The ma_state struct keeps track of tree operations to make
> > +life easier for both internal and external tree users.
> > +
> > +Initialising the maple tree is the same as in the :ref:`maple-tree-normal-api`.
> > +Please see above.
> > +
> > +The maple state keeps track of the range start and end in mas->index and
> > +mas->last, respectively.
> > +
> > +mas_walk() will walk the tree to the location of mas->index and set the
> > +mas->index and mas->last according to the range for the entry.
> > +
> > +You can set entries using mas_store().  mas_store() will overwrite any entry
> > +with the new entry and return the first existing entry that is overwritten.
> > +The range is passed in as members of the maple state: index and last.
> > +
> > +You can use mas_erase() to erase an entire range by setting index and
> > +last of the maple state to the desired range to erase.  This will erase
> > +the first range that is found in that range, set the maple state index
> > +and last as the range that was erased and return the entry that existed
> > +at that location.
> > +
> > +You can walk each entry within a range by using mas_for_each().  If you want
> > +to walk each element of the tree then ``0`` and ``ULONG_MAX`` may be used as
> > +the range.  If the lock needs to be periodically dropped, see the locking
> > +section mas_pause().
> > +
> > +Using a maple state allows mas_next() and mas_prev() to function as if the
> > +tree was a linked list.  With such a high branching factor the amortized
> > +performance penalty is outweighed by cache optimization.  mas_next() will
> > +return the next entry which occurs after the entry at index.  mas_prev()
> > +will return the previous entry which occurs before the entry at index.
> > +
> > +mas_find() will find the first entry which exists at or above index on
> > +the first call, and the next entry from every subsequent calls.
> > +
> > +mas_find_rev() will find the fist entry which exists at or below the last on
> > +the first call, and the previous entry from every subsequent calls.
> > +
> > +If the user needs to yield the lock during an operation, then the maple state
> > +must be paused using mas_pause().
> > +
> > +There are a few extra interfaces provided when using an allocation tree.
> > +If you wish to search for a gap within a range, then mas_empty_area()
> > +or mas_empty_area_rev() can be used.  mas_empty_area() searches for a gap
> > +starting at the lowest index given up to the maximum of the range.
> > +mas_empty_area_rev() searches for a gap starting at the highest index given
> > +and continues downward to the lower bound of the range.
> > +
> > +.. _maple-tree-advanced-alloc:
> > +
> > +Advanced Allocating Nodes
> > +-------------------------
> > +
> > +Allocations are usually handled internally to the tree, however if allocations
> > +need to occur before a write occurs then calling mas_expected_entries() will
> > +allocate the worst-case number of needed nodes to insert the provided number of
> > +ranges.  This also causes the tree to enter mass insertion mode.  Once
> > +insertions are complete calling mas_destroy() on the maple state will free the
> > +unused allocations.
> > +
> > +.. _maple-tree-advanced-locks:
> > +
> > +Advanced Locking
> > +----------------
> > +
> > +The maple tree uses a spinlock by default, but external locks can be used for
> > +tree updates as well.  To use an external lock, the tree must be initialized
> > +with the ``MT_FLAGS_LOCK_EXTERN flag``, this is usually done with the
> > +MTREE_INIT_EXT() #define, which takes an external lock as an argument.
> > +
> > +Functions and structures
> > +========================
> > +
> > +.. kernel-doc:: include/linux/maple_tree.h
> > +.. kernel-doc:: lib/maple_tree.c
> 
> The documentation can be improved (both grammar and formatting), like:

Thanks for reading through this document.

Three are some good changes like the additions of the references, but
I'm less enthusiastic about others.  I'll have to go through them in
more detail.

Thanks,
Liam

> 
> ---- >8 ----
> 
> diff --git a/Documentation/core-api/maple_tree.rst b/Documentation/core-api/maple_tree.rst
> index 45defcf15da71a..c1aa6bf3ab5edd 100644
> --- a/Documentation/core-api/maple_tree.rst
> +++ b/Documentation/core-api/maple_tree.rst
> @@ -10,36 +10,36 @@ Maple Tree
>  Overview
>  ========
>  
> -The Maple Tree is a B-Tree data type which is optimized for storing
> +The maple tree is a B-Tree data type which is optimized for storing
>  non-overlapping ranges, including ranges of size 1.  The tree was designed to
>  be simple to use and does not require a user written search method.  It
>  supports iterating over a range of entries and going to the previous or next
>  entry in a cache-efficient manner.  The tree can also be put into an RCU-safe
>  mode of operation which allows reading and writing concurrently.  Writers must
> -synchronize on a lock, which can be the default spinlock, or the user can set
> -the lock to an external lock of a different type.
> +synchronize on a lock (which can be set to either the default spinlock or an
> +external lock of a different type).
>  
>  The Maple Tree maintains a small memory footprint and was designed to use
> -modern processor cache efficiently.  The majority of the users will be able to
> -use the normal API.  An :ref:`maple-tree-advanced-api` exists for more complex
> -scenarios.  The most important usage of the Maple Tree is the tracking of the
> +modern processor cache efficiently.  For most users, using the
> +:ref:`normal API <maple-tree-normal-api>` will suffice. The
> +:ref:`advanced API <maple-tree-advanced-api>` is available for more complex
> +scenarios.  The most important usage of the maple tree is the tracking of
>  virtual memory areas.
>  
> -The Maple Tree can store values between ``0`` and ``ULONG_MAX``.  The Maple
> -Tree reserves values with the bottom two bits set to '10' which are below 4096
> +The maple tree can store values between 0 and ``ULONG_MAX``. It reserves
> +values with the bottom two bits set to ``10`` which are below 4096
>  (ie 2, 6, 10 .. 4094) for internal use.  If the entries may use reserved
>  entries then the users can convert the entries using xa_mk_value() and convert
>  them back by calling xa_to_value().  If the user needs to use a reserved
> -value, then the user can convert the value when using the
> -:ref:`maple-tree-advanced-api`, but are blocked by the normal API.
> +value, then the value can be converted when using the advanced API; however
> +converting that way is blocked by the normal API.
>  
> -The Maple Tree can also be configured to support searching for a gap of a given
> -size (or larger).
> +The maple tree can also be configured to support searching for a gap of a
> +given size (or larger).
>  
> -Pre-allocating of nodes is also supported using the
> -:ref:`maple-tree-advanced-api`.  This is useful for users who must guarantee a
> -successful store operation within a given
> -code segment when allocating cannot be done.  Allocations of nodes are
> +Pre-allocating of nodes is also supported by using the advanced API. This is
> +useful for users who must guarantee a successful store operation within a
> +given code segment when allocating cannot be done. Allocations of nodes are
>  relatively small at around 256 bytes.
>  
>  .. _maple-tree-normal-api:
> @@ -47,39 +47,40 @@ relatively small at around 256 bytes.
>  Normal API
>  ==========
>  
> -Start by initialising a maple tree, either with DEFINE_MTREE() for statically
> +Start by initializing a maple tree, either with DEFINE_MTREE() for statically
>  allocated maple trees or mt_init() for dynamically allocated ones.  A
> -freshly-initialised maple tree contains a ``NULL`` pointer for the range ``0``
> +freshly-initialized maple tree contains a ``NULL`` pointer for the range 0
>  - ``ULONG_MAX``.  There are currently two types of maple trees supported: the
> -allocation tree and the regular tree.  The regular tree has a higher branching
> +allocation tree and the regular tree. The regular tree has a higher branching
>  factor for internal nodes.  The allocation tree has a lower branching factor
>  but allows the user to search for a gap of a given size or larger from either
>  ``0`` upwards or ``ULONG_MAX`` down.  An allocation tree can be used by
> -passing in the ``MT_FLAGS_ALLOC_RANGE`` flag when initialising the tree.
> +passing in the ``MT_FLAGS_ALLOC_RANGE`` flag when initializing the tree.
>  
> -You can then set entries using mtree_store() or mtree_store_range().
> -mtree_store() will overwrite any entry with the new entry and return 0 on
> -success or an error code otherwise.  mtree_store_range() works in the same way
> -but takes a range.  mtree_load() is used to retrieve the entry stored at a
> -given index.  You can use mtree_erase() to erase an entire range by only
> -knowing one value within that range, or mtree_store() call with an entry of
> -NULL may be used to partially erase a range or many ranges at once.
> +After initializing the tree, you can set entries using mtree_store() or
> +mtree_store_range(). mtree_store() will overwrite any entry with the new entry
> +and return 0 on success or an error code otherwise. mtree_store_range() works
> +in the same way but takes a range instead. mtree_load() is used to retrieve
> +the entry stored at a given index. You can use mtree_erase() to erase an
> +entire range by only knowing one value within that range. mtree_store() call
> +with an entry of ``NULL`` may be used to partially erase a range or many
> +ranges at once.
>  
>  If you want to only store a new entry to a range (or index) if that range is
>  currently ``NULL``, you can use mtree_insert_range() or mtree_insert() which
> -return -EEXIST if the range is not empty.
> +return ``-EEXIST`` if the range is not empty.
>  
>  You can search for an entry from an index upwards by using mt_find().
>  
> -You can walk each entry within a range by calling mt_for_each().  You must
> -provide a temporary variable to store a cursor.  If you want to walk each
> +You can walk each entry within a range by calling mt_for_each(). A temporary
> +variable must be provided to store a cursor.  If you want to walk each
>  element of the tree then ``0`` and ``ULONG_MAX`` may be used as the range.  If
> -the caller is going to hold the lock for the duration of the walk then it is
> -worth looking at the mas_for_each() API in the :ref:`maple-tree-advanced-api`
> -section.
> +the caller is going to hold the lock for the duration of the walk then use
> +mas_for_each().
>  
> -Sometimes it is necessary to ensure the next call to store to a maple tree does
> -not allocate memory, please see :ref:`maple-tree-advanced-api` for this use case.
> +Sometimes it is necessary to ensure the next call to store to a maple tree
> +does not allocate memory. See :ref:`advanced API <maple-tree-advanced-api>`
> +for details.
>  
>  Finally, you can remove all entries from a maple tree by calling
>  mtree_destroy().  If the maple tree entries are pointers, you may wish to free
> @@ -89,24 +90,26 @@ Allocating Nodes
>  ----------------
>  
>  The allocations are handled by the internal tree code.  See
> -:ref:`maple-tree-advanced-alloc` for other options.
> +:ref:`maple-tree-advanced-alloc` for details.
>  
>  Locking
>  -------
>  
>  You do not have to worry about locking.  See :ref:`maple-tree-advanced-locks`
> -for other options.
> +for how to use external locking.
>  
> -The Maple Tree uses RCU and an internal spinlock to synchronise access:
> +The Maple Tree uses RCU and an internal spinlock to synchronize access.
> +
> +The following methods takes RCU read lock:
>  
> -Takes RCU read lock:
>   * mtree_load()
>   * mt_find()
>   * mt_for_each()
>   * mt_next()
>   * mt_prev()
>  
> -Takes ma_lock internally:
> +The following methods takes ``ma_lock`` internally:
> +
>   * mtree_store()
>   * mtree_store_range()
>   * mtree_insert()
> @@ -117,13 +120,13 @@ Takes ma_lock internally:
>   * mt_clear_in_rcu()
>  
>  If you want to take advantage of the internal lock to protect the data
> -structures that you are storing in the Maple Tree, you can call mtree_lock()
> -before calling mtree_load(), then take a reference count on the object you
> -have found before calling mtree_unlock().  This will prevent stores from
> -removing the object from the tree between looking up the object and
> -incrementing the refcount.  You can also use RCU to avoid dereferencing
> -freed memory, but an explanation of that is beyond the scope of this
> -document.
> +structures that you are storing in the maple tree, you can call
> +``mtree_lock()`` before calling mtree_load(), then take a reference count
> +on the object that have been found before calling ``mtree_unlock()``.  This
> +will prevent stores from removing the object from the tree between looking up
> +the object and incrementing the refcount.  You can also use RCU to avoid
> +dereferencing freed memory, but an explanation of that is beyond the scope of
> +this document.
>  
>  .. _maple-tree-advanced-api:
>  
> @@ -133,27 +136,27 @@ Advanced API
>  The advanced API offers more flexibility and better performance at the
>  cost of an interface which can be harder to use and has fewer safeguards.
>  You must take care of your own locking while using the advanced API.
> -You can use the ma_lock, RCU or an external lock for protection.
> +``ma_lock``, RCU or an external lock can be used for protection.
>  You can mix advanced and normal operations on the same array, as long
> -as the locking is compatible.  The :ref:`maple-tree-normal-api` is implemented
> -in terms of the advanced API.
> +as the locking is compatible.  The :ref:`normal API <maple-tree-normal-api>`
> +is implemented in terms of the advanced API.
>  
> -The advanced API is based around the ma_state, this is where the 'mas'
> -prefix originates.  The ma_state struct keeps track of tree operations to make
> -life easier for both internal and external tree users.
> +The advanced API is based around the ``ma_state``; this is where the ``mas``
> +prefix originates.  The ``ma_state`` struct keeps track of tree operations
> +to make life easier for both internal and external tree users.
>  
> -Initialising the maple tree is the same as in the :ref:`maple-tree-normal-api`.
> -Please see above.
> +Initializing the maple tree that uses advanced API is same as the one that
> +uses normal API.
>  
> -The maple state keeps track of the range start and end in mas->index and
> -mas->last, respectively.
> +The maple state keeps track of the range start and end in ``mas->index`` and
> +``mas->last``, respectively.
>  
>  mas_walk() will walk the tree to the location of mas->index and set the
> -mas->index and mas->last according to the range for the entry.
> +``mas->index`` and ``mas->last`` according to the range for the entry.
>  
> -You can set entries using mas_store().  mas_store() will overwrite any entry
> +You can set entries using mas_store(). It will overwrite any entry
>  with the new entry and return the first existing entry that is overwritten.
> -The range is passed in as members of the maple state: index and last.
> +The range is passed in as members of the maple state: ``index`` and ``last``.
>  
>  You can use mas_erase() to erase an entire range by setting index and
>  last of the maple state to the desired range to erase.  This will erase
> @@ -162,9 +165,8 @@ and last as the range that was erased and return the entry that existed
>  at that location.
>  
>  You can walk each entry within a range by using mas_for_each().  If you want
> -to walk each element of the tree then ``0`` and ``ULONG_MAX`` may be used as
> -the range.  If the lock needs to be periodically dropped, see the locking
> -section mas_pause().
> +to walk each element of the tree then 0 and ``ULONG_MAX`` may be used as
> +the range.  If the lock needs to be periodically dropped, use mas_pause().
>  
>  Using a maple state allows mas_next() and mas_prev() to function as if the
>  tree was a linked list.  With such a high branching factor the amortized
> @@ -173,32 +175,32 @@ return the next entry which occurs after the entry at index.  mas_prev()
>  will return the previous entry which occurs before the entry at index.
>  
>  mas_find() will find the first entry which exists at or above index on
> -the first call, and the next entry from every subsequent calls.
> +the first call and the next entry from every subsequent calls.
>  
>  mas_find_rev() will find the fist entry which exists at or below the last on
> -the first call, and the previous entry from every subsequent calls.
> +the first call and the previous entry from every subsequent calls.
>  
> -If the user needs to yield the lock during an operation, then the maple state
> +If you need to yield the lock during an operation, then the maple state
>  must be paused using mas_pause().
>  
>  There are a few extra interfaces provided when using an allocation tree.
>  If you wish to search for a gap within a range, then mas_empty_area()
> -or mas_empty_area_rev() can be used.  mas_empty_area() searches for a gap
> -starting at the lowest index given up to the maximum of the range.
> -mas_empty_area_rev() searches for a gap starting at the highest index given
> -and continues downward to the lower bound of the range.
> +or mas_empty_area_rev() can be used. The former searches for a gap
> +starting at the lowest index given up to the maximum of the range, while the
> +latter searches for a gap starting at the highest index given and continues
> +downward to the lower bound of the range.
>  
>  .. _maple-tree-advanced-alloc:
>  
>  Advanced Allocating Nodes
>  -------------------------
>  
> -Allocations are usually handled internally to the tree, however if allocations
> -need to occur before a write occurs then calling mas_expected_entries() will
> -allocate the worst-case number of needed nodes to insert the provided number of
> -ranges.  This also causes the tree to enter mass insertion mode.  Once
> -insertions are complete calling mas_destroy() on the maple state will free the
> -unused allocations.
> +Allocations are usually handled internally to the tree. However, if
> +allocations need to occur before a write occurs then calling
> +mas_expected_entries() will allocate the worst-case number of needed nodes
> +to insert the provided number of ranges. This also causes the tree to enter
> +mass insertion mode.  Once insertions are complete calling mas_destroy() on
> +the maple state will free the unused allocations.
>  
>  .. _maple-tree-advanced-locks:
>  
> @@ -207,8 +209,8 @@ Advanced Locking
>  
>  The maple tree uses a spinlock by default, but external locks can be used for
>  tree updates as well.  To use an external lock, the tree must be initialized
> -with the ``MT_FLAGS_LOCK_EXTERN flag``, this is usually done with the
> -MTREE_INIT_EXT() #define, which takes an external lock as an argument.
> +with the ``MT_FLAGS_LOCK_EXTERN flag``. This is usually done with the
> +MTREE_INIT_EXT() macro, which takes an external lock as an argument.
>  
>  Functions and structures
>  ========================
> diff --git a/include/linux/maple_tree.h b/include/linux/maple_tree.h
> index 2effab72add10e..c03652fba05e17 100644
> --- a/include/linux/maple_tree.h
> +++ b/include/linux/maple_tree.h
> @@ -153,18 +153,22 @@ enum maple_type {
>  
>  
>  /**
> - * DOC: Maple tree flags
> + * DOC: Flags and constants
>   *
> - * * MT_FLAGS_ALLOC_RANGE	- Track gaps in this tree
> - * * MT_FLAGS_USE_RCU		- Operate in RCU mode
> - * * MT_FLAGS_HEIGHT_OFFSET	- The position of the tree height in the flags
> - * * MT_FLAGS_HEIGHT_MASK	- The mask for the maple tree height value
> - * * MT_FLAGS_LOCK_MASK		- How the mt_lock is used
> - * * MT_FLAGS_LOCK_IRQ		- Acquired irq-safe
> - * * MT_FLAGS_LOCK_BH		- Acquired bh-safe
> - * * MT_FLAGS_LOCK_EXTERN	- mt_lock is not used
> + * Maple tree flags:
>   *
> - * MAPLE_HEIGHT_MAX	The largest height that can be stored
> + * * ``MT_FLAGS_ALLOC_RANGE``	- Track gaps in this tree
> + * * ``MT_FLAGS_USE_RCU``	- Operate in RCU mode
> + * * ``MT_FLAGS_HEIGHT_OFFSET``	- The position of the tree height in the flags
> + * * ``MT_FLAGS_HEIGHT_MASK``	- The mask for the maple tree height value
> + * * ``MT_FLAGS_LOCK_MASK``	- How the mt_lock is used
> + * * ``MT_FLAGS_LOCK_IRQ``	- Acquired irq-safe
> + * * ``MT_FLAGS_LOCK_BH``	- Acquired bh-safe
> + * * ``MT_FLAGS_LOCK_EXTERN``	- mt_lock is not used
> + *
> + * Maple tree constants:
> + *
> + * * ``MAPLE_HEIGHT_MAX``	- The largest height that can be stored
>   */
>  #define MT_FLAGS_ALLOC_RANGE	0x01
>  #define MT_FLAGS_USE_RCU	0x02
> @@ -498,7 +502,7 @@ int mas_empty_area_rev(struct ma_state *mas, unsigned long min,
>   *
>   * Resets the error or walk state of the @mas so future walks of the
>   * array will start from the root.  Use this if you have dropped the
> - * lock and want to reuse the ma_state.
> + * lock and want to reuse the ``ma_state``.
>   *
>   * Context: Any context.
>   */
> @@ -513,8 +517,8 @@ static inline void mas_reset(struct ma_state *mas)
>   * @__entry: Entry retrieved from the tree
>   * @__max: maximum index to retrieve from the tree
>   *
> - * When returned, mas->index and mas->last will hold the entire range for the
> - * entry.
> + * When returned, ``mas->index`` and ``mas->last`` will hold the entire
> + * range for the entry.
>   *
>   * Note: may return the zero entry.
>   *
> diff --git a/lib/maple_tree.c b/lib/maple_tree.c
> index e1743803c85125..d09485313f2f04 100644
> --- a/lib/maple_tree.c
> +++ b/lib/maple_tree.c
> @@ -5034,8 +5034,8 @@ static inline bool mas_anode_descend(struct ma_state *mas, unsigned long size)
>   * mas_walk() - Search for @mas->index in the tree.
>   * @mas: The maple state.
>   *
> - * mas->index and mas->last will be set to the range if there is a value.  If
> - * mas->node is MAS_NONE, reset to MAS_START.
> + * @mas->index and @mas->last will be set to the range if there is a value. 
> + * If @mas->node is ``MAS_NONE``, reset to ``MAS_START``.
>   *
>   * Return: the entry at the location or %NULL.
>   */
> @@ -5222,7 +5222,7 @@ static inline void mas_sparse_area(struct ma_state *mas, unsigned long min,
>  	mas->index = max;
>  }
>  
> -/*
> +/**
>   * mas_empty_area() - Get the lowest address within the range that is
>   * sufficient for the size requested.
>   * @mas: The maple state
> @@ -5277,7 +5277,7 @@ int mas_empty_area(struct ma_state *mas, unsigned long min,
>  	return 0;
>  }
>  
> -/*
> +/**
>   * mas_empty_area_rev() - Get the highest address within the range that is
>   * sufficient for the size requested.
>   * @mas: The maple state
> @@ -5629,10 +5629,11 @@ static void mas_wr_store_setup(struct ma_wr_state *wr_mas)
>   * @entry: The entry to store.
>   *
>   * The @mas->index and @mas->last is used to set the range for the @entry.
> - * Note: The @mas should have pre-allocated entries to ensure there is memory to
> - * store the entry.  Please see mas_expected_entries()/mas_destroy() for more details.
> + * Note: The @mas should have pre-allocated entries to ensure there is memory
> + * to store the entry. See mas_expected_entries()/mas_destroy() for more
> + * details.
>   *
> - * Return: the first entry between mas->index and mas->last or %NULL.
> + * Return: the first entry between @mas->index and @mas->last or %NULL.
>   */
>  void *mas_store(struct ma_state *mas, void *entry)
>  {
> @@ -5665,10 +5666,12 @@ void *mas_store(struct ma_state *mas, void *entry)
>   * mas_store_gfp() - Store a value into the tree.
>   * @mas: The maple state
>   * @entry: The entry to store
> - * @gfp: The GFP_FLAGS to use for allocations if necessary.
> + * @gfp: The ``GFP_FLAGS`` to use for allocations if necessary.
>   *
> - * Return: 0 on success, -EINVAL on invalid request, -ENOMEM if memory could not
> - * be allocated.
> + * Return:
> + * * 0 on success
> + * * ``-EINVAL`` on invalid request
> + * * ``-ENOMEM`` if memory could not be allocated.
>   */
>  int mas_store_gfp(struct ma_state *mas, void *entry, gfp_t gfp)
>  {
> @@ -5708,9 +5711,9 @@ void mas_store_prealloc(struct ma_state *mas, void *entry)
>   * mas_preallocate() - Preallocate enough nodes for a store operation
>   * @mas: The maple state
>   * @entry: The entry that will be stored
> - * @gfp: The GFP_FLAGS to use for allocations.
> + * @gfp: The ``GFP_FLAGS`` to use for allocations.
>   *
> - * Return: 0 on success, -ENOMEM if memory could not be allocated.
> + * Return: 0 on success, ``-ENOMEM`` if memory could not be allocated.
>   */
>  int mas_preallocate(struct ma_state *mas, void *entry, gfp_t gfp)
>  {
> @@ -5729,13 +5732,12 @@ int mas_preallocate(struct ma_state *mas, void *entry, gfp_t gfp)
>  	return ret;
>  }
>  
> -/*
> +/**
>   * mas_destroy() - destroy a maple state.
>   * @mas: The maple state
>   *
>   * Upon completion, check the left-most node and rebalance against the node to
> - * the right if necessary.  Frees any allocated nodes associated with this maple
> - * state.
> + * the right if necessary.  Frees any allocated nodes associated with @mas.
>   */
>  void mas_destroy(struct ma_state *mas)
>  {
> @@ -5773,17 +5775,17 @@ void mas_destroy(struct ma_state *mas)
>  	mas->alloc = NULL;
>  }
>  
> -/*
> +/**
>   * mas_expected_entries() - Set the expected number of entries that will be inserted.
>   * @mas: The maple state
>   * @nr_entries: The number of expected entries.
>   *
>   * This will attempt to pre-allocate enough nodes to store the expected number
>   * of entries.  The allocations will occur using the bulk allocator interface
> - * for speed.  Please call mas_destroy() on the @mas after inserting the entries
> - * to ensure any unused nodes are freed.
> + * for speed.  Please call mas_destroy() on the @mas after inserting
> + * entries to ensure any unused nodes are freed.
>   *
> - * Return: 0 on success, -ENOMEM if memory could not be allocated.
> + * Return: 0 on success, ``-ENOMEM`` if memory could not be allocated.
>   */
>  int mas_expected_entries(struct ma_state *mas, unsigned long nr_entries)
>  {
> @@ -5839,11 +5841,12 @@ int mas_expected_entries(struct ma_state *mas, unsigned long nr_entries)
>   * @mas: The maple state
>   * @max: The maximum index to check.
>   *
> - * Returns the next entry after @mas->index.
> - * Must hold rcu_read_lock or the write lock.
> - * Can return the zero entry.
> + * Context: Callers must hold ``rcu_read_lock`` or the write lock.
>   *
> - * Return: The next entry or %NULL
> + * Returns the next entry after @mas->index.
> + * The function can return the zero entry.
> + *
> + * Return: The next entry or %NULL.
>   */
>  void *mas_next(struct ma_state *mas, unsigned long max)
>  {
> @@ -5894,9 +5897,10 @@ EXPORT_SYMBOL_GPL(mt_next);
>   * @mas: The maple state
>   * @min: The minimum value to check.
>   *
> - * Must hold rcu_read_lock or the write lock.
> - * Will reset mas to MAS_START if the node is MAS_NONE.  Will stop on not
> - * searchable nodes.
> + * Context: Callers must hold ``rcu_read_lock`` or the write lock.
> + *
> + * The function will reset @mas to ``MAS_START`` if the node is ``MAS_NONE``.
> + * It will also stop on unsearchable nodes.
>   *
>   * Return: the previous value or %NULL.
>   */
> @@ -5957,12 +5961,12 @@ EXPORT_SYMBOL_GPL(mt_prev);
>   * mas_pause() - Pause a mas_find/mas_for_each to drop the lock.
>   * @mas: The maple state to pause
>   *
> - * Some users need to pause a walk and drop the lock they're holding in
> + * In some cases, there is a need to pause a walk and drop the held lock in
>   * order to yield to a higher priority thread or carry out an operation
> - * on an entry.  Those users should call this function before they drop
> - * the lock.  It resets the @mas to be suitable for the next iteration
> - * of the loop after the user has reacquired the lock.  If most entries
> - * found during a walk require you to call mas_pause(), the mt_for_each()
> + * on an entry. If this is the case, this function should be called before
> + * the lock is dropped. It resets the @mas to be suitable for the next
> + * iteration of the loop after the user has reacquired the lock. If most
> + * entries found during a walk requires calling mas_pause(), the mt_for_each()
>   * iterator may be more appropriate.
>   *
>   */
> @@ -5978,9 +5982,10 @@ EXPORT_SYMBOL_GPL(mas_pause);
>   * @mas: The maple state
>   * @max: The maximum value to check.
>   *
> - * Must hold rcu_read_lock or the write lock.
> - * If an entry exists, last and index are updated accordingly.
> - * May set @mas->node to MAS_NONE.
> + * Context: Callers must hold ``rcu_read_lock`` or the write lock.
> + *
> + * If an entry exists, @mas->last and @mas->index are updated accordingly.
> + * The function may set @mas->node to ``MAS_NONE``.
>   *
>   * Return: The entry or %NULL.
>   */
> @@ -6021,9 +6026,10 @@ void *mas_find(struct ma_state *mas, unsigned long max)
>   * @mas: The maple state
>   * @min: The minimum value to check.
>   *
> - * Must hold rcu_read_lock or the write lock.
> - * If an entry exists, last and index are updated accordingly.
> - * May set @mas->node to MAS_NONE.
> + * Context: Callers must hold ``rcu_read_lock`` or the write lock.
> + *
> + * If an entry exists, @mas->last and @mas->index are updated accordingly.
> + * The function may set @mas->node to ``MAS_NONE``.
>   *
>   * Return: The entry or %NULL.
>   */
> @@ -6066,7 +6072,8 @@ EXPORT_SYMBOL_GPL(mas_find);
>   * range.
>   * @mas: The maple state
>   *
> - * Must hold the write lock.
> + * Context: Callers must hold the write lock.
> + *
>   * Searches for @mas->index, sets @mas->index and @mas->last to the range and
>   * erases that range.
>   *
> @@ -6101,7 +6108,7 @@ EXPORT_SYMBOL_GPL(mas_erase);
>   * mas_nomem() - Check if there was an error allocating and do the allocation
>   * if necessary If there are allocations, then free them.
>   * @mas: The maple state
> - * @gfp: The GFP_FLAGS to use for allocations
> + * @gfp: The ``GFP_FLAGS`` to use for allocations
>   * Return: true on allocation, false otherwise.
>   */
>  bool mas_nomem(struct ma_state *mas, gfp_t gfp)
> @@ -6178,10 +6185,12 @@ EXPORT_SYMBOL(mtree_load);
>   * @index: The start of the range
>   * @last: The end of the range
>   * @entry: The entry to store
> - * @gfp: The GFP_FLAGS to use for allocations
> + * @gfp: The ``GFP_FLAGS`` to use for allocations
>   *
> - * Return: 0 on success, -EINVAL on invalid request, -ENOMEM if memory could not
> - * be allocated.
> + * Return:
> + * * 0 on success
> + * * ``-EINVAL`` on invalid request
> + * * ``-ENOMEM`` if memory could not be allocated.
>   */
>  int mtree_store_range(struct maple_tree *mt, unsigned long index,
>  		unsigned long last, void *entry, gfp_t gfp)
> @@ -6215,10 +6224,12 @@ EXPORT_SYMBOL(mtree_store_range);
>   * @mt: The maple tree
>   * @index: The index to store the value
>   * @entry: The entry to store
> - * @gfp: The GFP_FLAGS to use for allocations
> + * @gfp: The ``GFP_FLAGS`` to use for allocations
>   *
> - * Return: 0 on success, -EINVAL on invalid request, -ENOMEM if memory could not
> - * be allocated.
> + * Return:
> + * * 0 on success
> + * * ``-EINVAL`` on invalid request
> + * * ``-ENOMEM`` if memory could not be allocated.
>   */
>  int mtree_store(struct maple_tree *mt, unsigned long index, void *entry,
>  		 gfp_t gfp)
> @@ -6233,10 +6244,13 @@ EXPORT_SYMBOL(mtree_store);
>   * @first: The start of the range
>   * @last: The end of the range
>   * @entry: The entry to store
> - * @gfp: The GFP_FLAGS to use for allocations.
> + * @gfp: The ``GFP_FLAGS`` to use for allocations.
>   *
> - * Return: 0 on success, -EEXISTS if the range is occupied, -EINVAL on invalid
> - * request, -ENOMEM if memory could not be allocated.
> + * Return:
> + * * 0 on success
> + * * ``-EEXISTS`` if the range is occupied
> + * * ``-EINVAL`` on invalid request
> + * * ``-ENOMEM`` if memory could not be allocated.
>   */
>  int mtree_insert_range(struct maple_tree *mt, unsigned long first,
>  		unsigned long last, void *entry, gfp_t gfp)
> @@ -6268,10 +6282,13 @@ EXPORT_SYMBOL(mtree_insert_range);
>   * @mt: The maple tree
>   * @index : The index to store the value
>   * @entry: The entry to store
> - * @gfp: The FGP_FLAGS to use for allocations.
> + * @gfp: The ``GFP_FLAGS`` to use for allocations.
>   *
> - * Return: 0 on success, -EEXISTS if the range is occupied, -EINVAL on invalid
> - * request, -ENOMEM if memory could not be allocated.
> + * Return:
> + * * 0 on success
> + * * ``-EEXISTS`` if the range is occupied
> + * * ``-EINVAL`` on invalid request
> + * * ``-ENOMEM`` if memory could not be allocated.
>   */
>  int mtree_insert(struct maple_tree *mt, unsigned long index, void *entry,
>  		 gfp_t gfp)
> @@ -6354,8 +6371,9 @@ EXPORT_SYMBOL(mtree_alloc_rrange);
>   * @mt: The maple tree
>   * @index: The index to erase
>   *
> - * Erasing is the same as a walk to an entry then a store of a NULL to that
> - * ENTIRE range.  In fact, it is implemented as such using the advanced API.
> + * Erasing is the same walking to an entry then storing ``NULL`` to that
> + * entire range.  In fact, it is implemented as such using the advanced
> + * API.
>   *
>   * Return: The entry stored at the @index or %NULL
>   */
> @@ -6378,7 +6396,7 @@ EXPORT_SYMBOL(mtree_erase);
>   * __mt_destroy() - Walk and free all nodes of a locked maple tree.
>   * @mt: The maple tree
>   *
> - * Note: Does not handle locking.
> + * Note: This function does not handle locking.
>   */
>  void __mt_destroy(struct maple_tree *mt)
>  {
> @@ -6396,7 +6414,7 @@ EXPORT_SYMBOL_GPL(__mt_destroy);
>   * mtree_destroy() - Destroy a maple tree
>   * @mt: The maple tree
>   *
> - * Frees all resources used by the tree.  Handles locking.
> + * Frees all resources used by the tree. This function handles locking.
>   */
>  void mtree_destroy(struct maple_tree *mt)
>  {
> @@ -6412,7 +6430,8 @@ EXPORT_SYMBOL(mtree_destroy);
>   * @index: Pointer which contains the start location of the search
>   * @max: The maximum value to check
>   *
> - * Handles locking.  @index will be incremented to one beyond the range.
> + * This function handles locking.  @index will be incremented to one beyond
> + * the range.
>   *
>   * Return: The entry at or after the @index or %NULL
>   */
> @@ -6471,7 +6490,7 @@ EXPORT_SYMBOL(mt_find);
>   * @index: Pointer which contains the start location of the search
>   * @max: The maximum value to check
>   *
> - * Handles locking, detects wrapping on index == 0
> + * This function handles locking and detects wrapping on ``index == 0``.
>   *
>   * Return: The entry at or after the @index or %NULL
>   */
> 
> Thanks.
> 
> -- 
> An old man doll... just what I always wanted! - Clara



  reply	other threads:[~2022-09-14 10:16 UTC|newest]

Thread overview: 89+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-06 19:48 [PATCH v14 00/70] Introducing the Maple Tree Liam Howlett
2022-09-06 19:48 ` [PATCH v14 02/70] radix tree test suite: add pr_err define Liam Howlett
2022-09-06 19:48 ` [PATCH v14 01/70] Maple Tree: add new data structure Liam Howlett
2022-09-12  8:42   ` Bagas Sanjaya
2022-09-14 10:16     ` Liam Howlett [this message]
2022-09-06 19:48 ` [PATCH v14 04/70] radix tree test suite: add allocation counts and size to kmem_cache Liam Howlett
2022-09-06 19:48 ` [PATCH v14 03/70] radix tree test suite: add kmem_cache_set_non_kernel() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 05/70] radix tree test suite: add support for slab bulk APIs Liam Howlett
2022-09-06 19:48 ` [PATCH v14 06/70] radix tree test suite: add lockdep_is_held to header Liam Howlett
2022-09-06 19:48 ` [PATCH v14 07/70] lib/test_maple_tree: add testing for maple tree Liam Howlett
2022-10-11 12:16   ` Geert Uytterhoeven
2022-10-11 12:56     ` Matthew Wilcox
2022-10-11 12:59       ` Geert Uytterhoeven
2022-10-11 16:13         ` Liam Howlett
2022-09-06 19:48 ` [PATCH v14 08/70] mm: start tracking VMAs with " Liam Howlett
2022-09-06 19:48 ` [PATCH v14 11/70] mm/mmap: use the maple tree in find_vma() instead of the rbtree Liam Howlett
2022-09-06 19:48 ` [PATCH v14 10/70] mmap: use the VMA iterator in count_vma_pages_range() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 09/70] mm: add VMA iterator Liam Howlett
2022-09-06 19:48 ` [PATCH v14 14/70] kernel/fork: use maple tree for dup_mmap() during forking Liam Howlett
2022-09-06 19:48 ` [PATCH v14 12/70] mm/mmap: use the maple tree for find_vma_prev() instead of the rbtree Liam Howlett
2022-09-06 19:48 ` [PATCH v14 13/70] mm/mmap: use maple tree for unmapped_area{_topdown} Liam Howlett
2022-09-06 19:48 ` [PATCH v14 17/70] mm: remove rb tree Liam Howlett
2022-09-06 19:48 ` [PATCH v14 16/70] proc: remove VMA rbtree use from nommu Liam Howlett
2022-09-06 19:48 ` [PATCH v14 15/70] damon: convert __damon_va_three_regions to use the VMA iterator Liam Howlett
2022-09-06 19:48 ` [PATCH v14 20/70] mm: optimize find_exact_vma() to use vma_lookup() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 18/70] mmap: change zeroing of maple tree in __vma_adjust() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 19/70] xen: use vma_lookup() in privcmd_ioctl_mmap() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 22/70] mm/mmap: change do_brk_flags() to expand existing VMA and add do_brk_munmap() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 21/70] mm/khugepaged: optimize collapse_pte_mapped_thp() by using vma_lookup() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 23/70] mm: use maple tree operations for find_vma_intersection() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 24/70] mm/mmap: use advanced maple tree API for mmap_region() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 25/70] mm: remove vmacache Liam Howlett
2022-09-06 19:48 ` [PATCH v14 26/70] mm: convert vma_lookup() to use mtree_load() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 28/70] mm/mmap: reorganize munmap to use maple states Liam Howlett
2022-09-06 19:48 ` [PATCH v14 27/70] mm/mmap: move mmap_region() below do_munmap() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 29/70] mm/mmap: change do_brk_munmap() to use do_mas_align_munmap() Liam Howlett
2022-09-06 19:48 ` [PATCH v14 30/70] arm64: remove mmap linked list from vdso Liam Howlett
2022-09-06 19:48 ` [PATCH v14 31/70] arm64: Change elfcore for_each_mte_vma() to use VMA iterator Liam Howlett
2022-09-06 19:48 ` [PATCH v14 32/70] parisc: remove mmap linked list from cache handling Liam Howlett
2022-09-06 19:48 ` [PATCH v14 33/70] powerpc: remove mmap linked list walks Liam Howlett
2022-09-06 19:48 ` [PATCH v14 34/70] s390: remove vma " Liam Howlett
2022-09-06 19:48 ` [PATCH v14 35/70] x86: " Liam Howlett
2022-09-06 19:48 ` [PATCH v14 38/70] optee: remove vma linked list walk Liam Howlett
2022-09-06 19:48 ` [PATCH v14 36/70] xtensa: remove vma linked list walks Liam Howlett
2022-09-06 19:48 ` [PATCH v14 37/70] cxl: remove vma linked list walk Liam Howlett
2022-09-06 19:48 ` [PATCH v14 39/70] um: " Liam Howlett
2022-09-06 19:48 ` [PATCH v14 41/70] exec: use VMA iterator instead of linked list Liam Howlett
2022-09-06 19:48 ` [PATCH v14 40/70] coredump: remove vma linked list walk Liam Howlett
2022-09-06 19:48 ` [PATCH v14 42/70] fs/proc/base: use the vma iterators in place of linked list Liam Howlett
2022-09-06 19:48 ` [PATCH v14 43/70] fs/proc/task_mmu: stop using linked list and highest_vm_end Liam Howlett
2022-09-06 19:48 ` [PATCH v14 44/70] userfaultfd: use maple tree iterator to iterate VMAs Liam Howlett
2022-09-06 19:48 ` [PATCH v14 45/70] ipc/shm: use VMA iterator instead of linked list Liam Howlett
2022-09-06 19:48 ` [PATCH v14 46/70] acct: " Liam Howlett
2022-09-06 19:48 ` [PATCH v14 47/70] perf: use VMA iterator Liam Howlett
2022-09-06 19:48 ` [PATCH v14 50/70] bpf: remove VMA linked list Liam Howlett
2022-09-06 19:48 ` [PATCH v14 49/70] fork: use VMA iterator Liam Howlett
2022-09-06 19:48 ` [PATCH v14 48/70] sched: use maple tree iterator to walk VMAs Liam Howlett
2022-09-06 19:49 ` [PATCH v14 52/70] mm/khugepaged: stop using vma linked list Liam Howlett
2022-09-06 19:49 ` [PATCH v14 51/70] mm/gup: use maple tree navigation instead of " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 55/70] mm/memcontrol: stop using mm->highest_vm_end Liam Howlett
2022-09-06 19:49 ` [PATCH v14 54/70] mm/madvise: use vma_find() instead of vma linked list Liam Howlett
2022-09-06 19:49 ` [PATCH v14 53/70] mm/ksm: use vma iterators " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 57/70] mm/mlock: use vma iterator and maple state " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 56/70] mm/mempolicy: use vma iterator & " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 58/70] mm/mprotect: use maple tree navigation instead of VMA " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 59/70] mm/mremap: use vma_find_intersection() instead of vma " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 60/70] mm/msync: use vma_find() " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 61/70] mm/oom_kill: use vma iterators " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 64/70] i915: use the VMA iterator Liam Howlett
2022-09-06 19:49 ` [PATCH v14 63/70] mm/swapfile: use vma iterator instead of vma linked list Liam Howlett
2022-09-06 19:49 ` [PATCH v14 62/70] mm/pagewalk: use vma_find() " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 65/70] nommu: remove uses of VMA " Liam Howlett
2022-09-06 19:49 ` [PATCH v14 67/70] mm/vmscan: Use vma iterator instead of vm_next Liam Howlett
2022-09-12  6:55   ` Yu Zhao
2022-09-12  7:13     ` Yu Zhao
2022-09-12  7:14     ` Liam Howlett
2022-09-12 19:45     ` Andrew Morton
2022-09-12 20:01       ` Yu Zhao
2022-09-12 21:03         ` Andrew Morton
2022-09-13  3:39           ` Yu Zhao
2022-09-06 19:49 ` [PATCH v14 66/70] riscv: use vma iterator for vdso Liam Howlett
2022-09-06 19:49 ` [PATCH v14 70/70] mm/mmap.c: pass in mapping to __vma_link_file() Liam Howlett
2022-09-06 19:49 ` [PATCH v14 68/70] mm: remove the vma linked list Liam Howlett
2022-09-06 19:49 ` [PATCH v14 69/70] mm/mmap: drop range_has_overlap() function Liam Howlett
2022-09-06 23:51 ` [PATCH v14 00/70] Introducing the Maple Tree Andrew Morton
2022-09-07  0:24   ` Liam Howlett
2022-09-12  0:20 ` Andrew Morton
2022-09-15 18:03   ` Yu Zhao
2022-09-17  8:24     ` Yu Zhao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220914101619.gqcwedq4jv5qneck@revolver \
    --to=liam.howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=bagasdotme@gmail.com \
    --cc=dhowells@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=maple-tree@lists.infradead.org \
    --cc=svens@linux.ibm.com \
    --cc=willy@infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).