projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61b963b
)
maple_tree: fix mas_find_rev() comment
author
Liam Howlett
<liam.howlett@oracle.com>
Tue, 25 Oct 2022 17:38:14 +0000
(17:38 +0000)
committer
Andrew Morton
<akpm@linux-foundation.org>
Fri, 16 Dec 2022 00:37:49 +0000
(16:37 -0800)
mas_find_rev() uses mas_prev_entry(), not mas_next_entry(), correct comment.
Link:
https://lkml.kernel.org/r/20221025173756.2719616-1-Liam.Howlett@oracle.com
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/maple_tree.c
patch
|
blob
|
history
diff --git
a/lib/maple_tree.c
b/lib/maple_tree.c
index 3fe1491d2bf985c157409e7722476486e0ac59ac..fe3947b80069051efdf384ace581bea25e65c1e7 100644
(file)
--- a/
lib/maple_tree.c
+++ b/
lib/maple_tree.c
@@
-6062,7
+6062,7
@@
void *mas_find_rev(struct ma_state *mas, unsigned long min)
if (mas->index < min)
return NULL;
- /* Retries on dead nodes handled by mas_
next
_entry */
+ /* Retries on dead nodes handled by mas_
prev
_entry */
return mas_prev_entry(mas, min);
}
EXPORT_SYMBOL_GPL(mas_find_rev);