From: Eric Saint-Etienne <[email protected]>

A double pointer is used in map__find() where a single pointer is enough
because the function doesn't affect the rbtree and the rbtree is locked.

Signed-off-by: Eric Saint-Etienne <[email protected]>
Acked-by: Jiri Olsa <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Eric Saint-Etienne <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: 
http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
---
 tools/perf/util/map.c | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c
index 781eed8e3265..a0d58b4d9c32 100644
--- a/tools/perf/util/map.c
+++ b/tools/perf/util/map.c
@@ -873,19 +873,18 @@ void maps__remove(struct maps *maps, struct map *map)
 
 struct map *maps__find(struct maps *maps, u64 ip)
 {
-       struct rb_node **p, *parent = NULL;
+       struct rb_node *p;
        struct map *m;
 
        down_read(&maps->lock);
 
-       p = &maps->entries.rb_node;
-       while (*p != NULL) {
-               parent = *p;
-               m = rb_entry(parent, struct map, rb_node);
+       p = maps->entries.rb_node;
+       while (p != NULL) {
+               m = rb_entry(p, struct map, rb_node);
                if (ip < m->start)
-                       p = &(*p)->rb_left;
+                       p = p->rb_left;
                else if (ip >= m->end)
-                       p = &(*p)->rb_right;
+                       p = p->rb_right;
                else
                        goto out;
        }
-- 
2.19.2

Reply via email to