]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
maple_tree: Add mas_prev_range() and mas_find_range_rev interface
authorLiam R. Howlett <Liam.Howlett@oracle.com>
Tue, 2 May 2023 02:18:00 +0000 (22:18 -0400)
committerLiam R. Howlett <Liam.Howlett@oracle.com>
Tue, 2 May 2023 17:51:57 +0000 (13:51 -0400)
Some users of the maple tree may want to move to the previous range
regardless of the value stored there.  Add this interface as well as the
'find' variant to support walking to the first value, then iterating
over the previous ranges.

Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
include/linux/maple_tree.h
lib/maple_tree.c

index 8f8c0649776843b9ff6d4d26f84b6e798ed6ba05..f9d90a0c97a0944c09ce034c0eaeb42a2878edad 100644 (file)
@@ -467,6 +467,7 @@ void mas_destroy(struct ma_state *mas);
 int mas_expected_entries(struct ma_state *mas, unsigned long nr_entries);
 
 void *mas_prev(struct ma_state *mas, unsigned long min);
+void *mas_prev_range(struct ma_state *mas, unsigned long max);
 void *mas_next(struct ma_state *mas, unsigned long max);
 void *mas_next_range(struct ma_state *mas, unsigned long max);
 
index 8485aedd5db912e01c2b835d1608506883e73e44..dcd41966b3b5ba10e54fd8daea2ff28b38721f21 100644 (file)
@@ -5998,18 +5998,8 @@ void *mt_next(struct maple_tree *mt, unsigned long index, unsigned long max)
 }
 EXPORT_SYMBOL_GPL(mt_next);
 
-/**
- * mas_prev() - Get the previous entry
- * @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.
- *
- * Return: the previous value or %NULL.
- */
-void *mas_prev(struct ma_state *mas, unsigned long min)
+static inline bool mas_prev_setup(struct ma_state *mas, unsigned long min,
+               void **entry)
 {
        if (mas->index <= min)
                goto none;
@@ -6027,7 +6017,8 @@ void *mas_prev(struct ma_state *mas, unsigned long min)
                if (!mas->index)
                        goto none;
                mas->index = mas->last = 0;
-               return mas_root(mas);
+               *entry = mas_root(mas);
+               return true;
        }
 
        if (mas_is_none(mas)) {
@@ -6035,18 +6026,64 @@ void *mas_prev(struct ma_state *mas, unsigned long min)
                        /* Walked to out-of-range pointer? */
                        mas->index = mas->last = 0;
                        mas->node = MAS_ROOT;
-                       return mas_root(mas);
+                       *entry = mas_root(mas);
+                       return true;
                }
-               return NULL;
+               return true;
        }
-       return mas_prev_slot(mas, min, false);
+
+       return false;
 
 none:
        mas->node = MAS_NONE;
-       return NULL;
+       return true;
+}
+
+/**
+ * mas_prev() - Get the previous entry
+ * @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.
+ *
+ * Return: the previous value or %NULL.
+ */
+void *mas_prev(struct ma_state *mas, unsigned long min)
+{
+       void *entry = NULL;
+
+       if (mas_prev_setup(mas, min, &entry))
+               return entry;
+
+       return mas_prev_slot(mas, min, false);
 }
 EXPORT_SYMBOL_GPL(mas_prev);
 
+/**
+ * mas_prev_range() - Advance to the previous range
+ * @mas: The maple state
+ * @min: The minimum value to check.
+ *
+ * Sets @mas->index and @mas->last to the range.
+ * 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.
+ *
+ * Return: the previous value or %NULL.
+ */
+void *mas_prev_range(struct ma_state *mas, unsigned long min)
+{
+       void *entry = NULL;
+
+       if (mas_prev_setup(mas, min, &entry))
+               return entry;
+
+       return mas_prev_slot(mas, min, true);
+}
+EXPORT_SYMBOL_GPL(mas_prev_slot);
+
 /**
  * mt_prev() - get the previous value in the maple tree
  * @mt: The maple tree
@@ -6190,20 +6227,15 @@ void *mas_find_range(struct ma_state *mas, unsigned long max)
 EXPORT_SYMBOL_GPL(mas_find_range);
 
 /**
- * mas_find_rev: On the first call, find the first non-null entry at or below
- * mas->index down to %min.  Otherwise find the first non-null entry below
- * mas->index down to %min.
- * @mas: The maple state
- * @min: The minimum value to check.
+ * mas_find_rev_setup() - Internal function to set up mas_find_*_rev()
  *
- * 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.
- *
- * Return: The entry or %NULL.
+ * Returns: True if entry is the answer, false otherwise.
  */
-void *mas_find_rev(struct ma_state *mas, unsigned long min)
+static inline bool mas_find_rev_setup(struct ma_state *mas, unsigned long min,
+               void **entry)
 {
+       *entry = NULL;
+
        if (unlikely(mas_is_none(mas))) {
                if (mas->index <= min)
                        goto none;
@@ -6215,7 +6247,7 @@ void *mas_find_rev(struct ma_state *mas, unsigned long min)
        if (unlikely(mas_is_paused(mas))) {
                if (unlikely(mas->index <= min)) {
                        mas->node = MAS_NONE;
-                       return NULL;
+                       return true;
                }
                mas->node = MAS_START;
                mas->last = --mas->index;
@@ -6223,14 +6255,12 @@ void *mas_find_rev(struct ma_state *mas, unsigned long min)
 
        if (unlikely(mas_is_start(mas))) {
                /* First run or continue */
-               void *entry;
-
                if (mas->index < min)
-                       return NULL;
+                       return true;
 
-               entry = mas_walk(mas);
-               if (entry)
-                       return entry;
+               *entry = mas_walk(mas);
+               if (*entry)
+                       return true;
        }
 
        if (unlikely(!mas_searchable(mas))) {
@@ -6244,22 +6274,72 @@ void *mas_find_rev(struct ma_state *mas, unsigned long min)
                         */
                        mas->last = mas->index = 0;
                        mas->node = MAS_ROOT;
-                       return mas_root(mas);
+                       *entry = mas_root(mas);
+                       return true;
                }
        }
 
        if (mas->index < min)
-               return NULL;
+               return true;
 
-       /* Retries on dead nodes handled by mas_prev_slot */
-       return mas_prev_slot(mas, min, false);
+       return false;
 
 none:
        mas->node = MAS_NONE;
-       return NULL;
+       return true;
+}
+
+/**
+ * mas_find_rev: On the first call, find the first non-null entry at or below
+ * mas->index down to %min.  Otherwise find the first non-null entry below
+ * mas->index down to %min.
+ * @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.
+ *
+ * Return: The entry or %NULL.
+ */
+void *mas_find_rev(struct ma_state *mas, unsigned long min)
+{
+       void *entry;
+
+       if (mas_find_rev_setup(mas, min, &entry))
+               return entry;
+
+       /* Retries on dead nodes handled by mas_prev_slot */
+       return mas_prev_slot(mas, min, false);
+
 }
 EXPORT_SYMBOL_GPL(mas_find_rev);
 
+/**
+ * mas_find_range_rev: On the first call, find the first non-null entry at or
+ * below mas->index down to %min.  Otherwise advance to the previous slot after
+ * mas->index down to %min.
+ * @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.
+ *
+ * Return: The entry or %NULL.
+ */
+void *mas_find_range_rev(struct ma_state *mas, unsigned long min)
+{
+       void *entry;
+
+       if (mas_find_rev_setup(mas, min, &entry))
+               return entry;
+
+       /* Retries on dead nodes handled by mas_prev_slot */
+       return mas_prev_slot(mas, min, true);
+}
+EXPORT_SYMBOL_GPL(mas_find_range_rev);
+
 /**
  * mas_erase() - Find the range in which index resides and erase the entire
  * range.