Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf maps: Rename map_groups.h to maps.h

One more step in the merge of 'struct maps' with 'struct map_groups'.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-9ibtn3vua76f934t7woyf26w@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+13 -13
+1 -1
tools/perf/arch/arm/tests/dwarf-unwind.c
··· 3 3 #include "perf_regs.h" 4 4 #include "thread.h" 5 5 #include "map.h" 6 - #include "map_groups.h" 6 + #include "maps.h" 7 7 #include "event.h" 8 8 #include "debug.h" 9 9 #include "tests/tests.h"
+1 -1
tools/perf/arch/arm64/tests/dwarf-unwind.c
··· 3 3 #include "perf_regs.h" 4 4 #include "thread.h" 5 5 #include "map.h" 6 - #include "map_groups.h" 6 + #include "maps.h" 7 7 #include "event.h" 8 8 #include "debug.h" 9 9 #include "tests/tests.h"
+1 -1
tools/perf/arch/powerpc/tests/dwarf-unwind.c
··· 3 3 #include "perf_regs.h" 4 4 #include "thread.h" 5 5 #include "map.h" 6 - #include "map_groups.h" 6 + #include "maps.h" 7 7 #include "event.h" 8 8 #include "debug.h" 9 9 #include "tests/tests.h"
+1 -1
tools/perf/arch/x86/tests/dwarf-unwind.c
··· 3 3 #include "perf_regs.h" 4 4 #include "thread.h" 5 5 #include "map.h" 6 - #include "map_groups.h" 6 + #include "maps.h" 7 7 #include "event.h" 8 8 #include "debug.h" 9 9 #include "tests/tests.h"
+1 -1
tools/perf/tests/map_groups.c
··· 3 3 #include <linux/kernel.h> 4 4 #include "tests.h" 5 5 #include "map.h" 6 - #include "map_groups.h" 6 + #include "maps.h" 7 7 #include "dso.h" 8 8 #include "debug.h" 9 9
+1 -1
tools/perf/ui/stdio/hist.c
··· 8 8 #include "../../util/event.h" 9 9 #include "../../util/hist.h" 10 10 #include "../../util/map.h" 11 - #include "../../util/map_groups.h" 11 + #include "../../util/maps.h" 12 12 #include "../../util/symbol.h" 13 13 #include "../../util/sort.h" 14 14 #include "../../util/evsel.h"
+1 -1
tools/perf/util/annotate.c
··· 23 23 #include "dso.h" 24 24 #include "env.h" 25 25 #include "map.h" 26 - #include "map_groups.h" 26 + #include "maps.h" 27 27 #include "symbol.h" 28 28 #include "srcline.h" 29 29 #include "units.h"
+1 -1
tools/perf/util/machine.h
··· 4 4 5 5 #include <sys/types.h> 6 6 #include <linux/rbtree.h> 7 - #include "map_groups.h" 7 + #include "maps.h" 8 8 #include "dsos.h" 9 9 #include "rwsem.h" 10 10
+3 -3
tools/perf/util/map_groups.h tools/perf/util/maps.h
··· 1 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 - #ifndef __PERF_MAP_GROUPS_H 3 - #define __PERF_MAP_GROUPS_H 2 + #ifndef __PERF_MAPS_H 3 + #define __PERF_MAPS_H 4 4 5 5 #include <linux/refcount.h> 6 6 #include <linux/rbtree.h> ··· 84 84 85 85 void __maps__sort_by_name(struct maps *maps); 86 86 87 - #endif // __PERF_MAP_GROUPS_H 87 + #endif // __PERF_MAPS_H
+1 -1
tools/perf/util/probe-event.c
··· 28 28 #include "dso.h" 29 29 #include "color.h" 30 30 #include "map.h" 31 - #include "map_groups.h" 31 + #include "maps.h" 32 32 #include "symbol.h" 33 33 #include <api/fs/fs.h> 34 34 #include "trace-event.h" /* For __maybe_unused */
+1 -1
tools/perf/util/symbol-elf.c
··· 9 9 10 10 #include "dso.h" 11 11 #include "map.h" 12 - #include "map_groups.h" 12 + #include "maps.h" 13 13 #include "symbol.h" 14 14 #include "symsrc.h" 15 15 #include "demangle-java.h"