[PATCH v5 4/8] perf: build-id: name debugging vdso as "debug"

From: Changbin Du
Date: Tue Jul 02 2024 - 00:20:13 EST


As normal objects, we will add debugging vdso elf to build-id cache later.
Here we name the debugging one as "debug".

Signed-off-by: Changbin Du <changbin.du@xxxxxxxxxx>
---
tools/perf/util/build-id.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/perf/util/build-id.c b/tools/perf/util/build-id.c
index 83a1581e8cf1..15530af2bad9 100644
--- a/tools/perf/util/build-id.c
+++ b/tools/perf/util/build-id.c
@@ -259,8 +259,8 @@ static bool build_id_cache__valid_id(char *sbuild_id)
static const char *build_id_cache__basename(bool is_kallsyms, bool is_vdso,
bool is_debug)
{
- return is_kallsyms ? "kallsyms" : (is_vdso ? "vdso" : (is_debug ?
- "debug" : "elf"));
+ return is_kallsyms ? "kallsyms" : (is_debug ? "debug" : (is_vdso ?
+ "vdso" : "elf"));
}

char *__dso__build_id_filename(const struct dso *dso, char *bf, size_t size,
--
2.34.1