[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-4e31050f482c02c822b150d71cf1ea5be7c9d6e4@git.kernel.org>
Date: Wed, 18 Feb 2015 10:29:40 -0800
From: tip-bot for Vinson Lee <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: Waiman.Long@...com, mingo@...nel.org, eranian@...gle.com,
linux-kernel@...r.kernel.org, a.p.zijlstra@...llo.nl,
hpa@...or.com, tglx@...utronix.de, namhyung@...nel.org,
jolsa@...hat.com, avi@...udius-systems.com, acme@...hat.com,
anton@...ba.org, vlee@...tter.com, adrian.hunter@...el.com,
paulus@...ba.org
Subject: [tip:perf/core] perf symbols:
Define STT_GNU_IFUNC for glibc 2.9 and older.
Commit-ID: 4e31050f482c02c822b150d71cf1ea5be7c9d6e4
Gitweb: http://git.kernel.org/tip/4e31050f482c02c822b150d71cf1ea5be7c9d6e4
Author: Vinson Lee <vlee@...tter.com>
AuthorDate: Mon, 9 Feb 2015 16:29:37 -0800
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Wed, 11 Feb 2015 12:37:32 -0300
perf symbols: Define STT_GNU_IFUNC for glibc 2.9 and older.
The token STT_GNU_IFUNC is not available with glibc 2.9 and older.
Define this token if it is not already defined.
This patch fixes this build errors with older versions of glibc.
CC util/symbol-elf.o
util/symbol-elf.c: In function ‘elf_sym__is_function’:
util/symbol-elf.c:75: error: ‘STT_GNU_IFUNC’ undeclared (first use in this function)
util/symbol-elf.c:75: error: (Each undeclared identifier is reported only once
util/symbol-elf.c:75: error: for each function it appears in.)
make: *** [util/symbol-elf.o] Error 1
Signed-off-by: Vinson Lee <vlee@...tter.com>
Acked-by: Namhyung Kim <namhyung@...nel.org>
Cc: Adrian Hunter <adrian.hunter@...el.com>
Cc: Anton Blanchard <anton@...ba.org>
Cc: Avi Kivity <avi@...udius-systems.com>
Cc: Jiri Olsa <jolsa@...hat.com>
Cc: Paul Mackerras <paulus@...ba.org>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Stephane Eranian <eranian@...gle.com>
Cc: Waiman Long <Waiman.Long@...com>
Cc: stable@...r.kernel.org # 3.17+
Link: http://lkml.kernel.org/r/1423528286-13630-1-git-send-email-vlee@twopensource.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/util/symbol-elf.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/perf/util/symbol-elf.c b/tools/perf/util/symbol-elf.c
index 225eb73..b02731a 100644
--- a/tools/perf/util/symbol-elf.c
+++ b/tools/perf/util/symbol-elf.c
@@ -69,6 +69,10 @@ static inline uint8_t elf_sym__type(const GElf_Sym *sym)
return GELF_ST_TYPE(sym->st_info);
}
+#ifndef STT_GNU_IFUNC
+#define STT_GNU_IFUNC 10
+#endif
+
static inline int elf_sym__is_function(const GElf_Sym *sym)
{
return (elf_sym__type(sym) == STT_FUNC ||
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists