forked from luck/tmp_suning_uos_patched
perf tools: Rename maps__next
It really is a 'struct map' method, and since we're introducing a new 'struct maps' class, fix it to avoid confusion. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Borislav Petkov <bp@suse.de> Cc: David Ahern <dsahern@gmail.com> Cc: Don Zickus <dzickus@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-xo9ifhk53cfl30wqcuhxpnvl@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
4bb11d012a
commit
4d4dee9a96
|
@ -775,7 +775,7 @@ struct map *maps__first(struct rb_root *maps)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
struct map *maps__next(struct map *map)
|
||||
struct map *map__next(struct map *map)
|
||||
{
|
||||
struct rb_node *next = rb_next(&map->rb_node);
|
||||
|
||||
|
|
|
@ -166,7 +166,7 @@ void maps__insert(struct rb_root *maps, struct map *map);
|
|||
void maps__remove(struct rb_root *maps, struct map *map);
|
||||
struct map *maps__find(struct rb_root *maps, u64 addr);
|
||||
struct map *maps__first(struct rb_root *maps);
|
||||
struct map *maps__next(struct map *map);
|
||||
struct map *map__next(struct map *map);
|
||||
void map_groups__init(struct map_groups *mg, struct machine *machine);
|
||||
void map_groups__exit(struct map_groups *mg);
|
||||
int map_groups__clone(struct map_groups *mg,
|
||||
|
@ -201,7 +201,7 @@ static inline struct map *map_groups__first(struct map_groups *mg,
|
|||
|
||||
static inline struct map *map_groups__next(struct map *map)
|
||||
{
|
||||
return maps__next(map);
|
||||
return map__next(map);
|
||||
}
|
||||
|
||||
struct symbol *map_groups__find_symbol(struct map_groups *mg,
|
||||
|
|
Loading…
Reference in New Issue
Block a user