}
/*
- * _mas_rev_awalk() - Internal function. Reverse allocation walk. Find the
+ * mas_rev_awalk() - Internal function. Reverse allocation walk. Find the
* highest gap address of a given size in a given node and descend.
* @mas: The maple state
* @size: The needed size.
* Return: True if found in a leaf, false otherwise.
*
*/
-static bool _mas_rev_awalk(struct ma_state *mas, unsigned long size)
+static bool mas_rev_awalk(struct ma_state *mas, unsigned long size)
{
enum maple_type type = mte_node_type(mas->node);
struct maple_node *node = mas_mn(mas);
mas->index = min;
mas->last = max;
- while (!_mas_rev_awalk(mas, size)) {
+ while (!mas_rev_awalk(mas, size)) {
if (last == mas->node) {
if (!mas_rewind_node(mas))
return -EBUSY;