[<prev] [next>] [day] [month] [year] [list]
Message-ID: <tip-97l3eg3fnk5shmo4rsyyvj2t@git.kernel.org>
Date: Sat, 16 Jul 2016 13:43:58 -0700
From: tip-bot for Arnaldo Carvalho de Melo <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: adrian.hunter@...el.com, hpa@...or.com, wangnan0@...wei.com,
linux-kernel@...r.kernel.org, namhyung@...nel.org,
mingo@...nel.org, cphlipot0@...il.com, jolsa@...nel.org,
acme@...hat.com, dsahern@...il.com, tglx@...utronix.de
Subject: [tip:perf/core] tools: Make "__always_inline" just "inline" on
Android
Commit-ID: 8c98abff43616a2a9c208189f86d32cefafbe708
Gitweb: http://git.kernel.org/tip/8c98abff43616a2a9c208189f86d32cefafbe708
Author: Arnaldo Carvalho de Melo <acme@...hat.com>
AuthorDate: Thu, 14 Jul 2016 12:03:04 -0300
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Thu, 14 Jul 2016 12:03:04 -0300
tools: Make "__always_inline" just "inline" on Android
As the gcc there is producing tons of:
"warning: always_inline function might not be inlinable"
At least on android-ndk-r12/platforms/android-24/arch-arm, so, for the
time being, use this big hammer.
Cc: Adrian Hunter <adrian.hunter@...el.com>
Cc: Chris Phlipot <cphlipot0@...il.com>
Cc: David Ahern <dsahern@...il.com>
Cc: Jiri Olsa <jolsa@...nel.org>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Wang Nan <wangnan0@...wei.com>
Link: http://lkml.kernel.org/n/tip-97l3eg3fnk5shmo4rsyyvj2t@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/include/linux/compiler.h | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/tools/include/linux/compiler.h b/tools/include/linux/compiler.h
index fa7208a..e33fc1d 100644
--- a/tools/include/linux/compiler.h
+++ b/tools/include/linux/compiler.h
@@ -9,6 +9,17 @@
# define __always_inline inline __attribute__((always_inline))
#endif
+#ifdef __ANDROID__
+/*
+ * FIXME: Big hammer to get rid of tons of:
+ * "warning: always_inline function might not be inlinable"
+ *
+ * At least on android-ndk-r12/platforms/android-24/arch-arm
+ */
+#undef __always_inline
+#define __always_inline inline
+#endif
+
#define __user
#ifndef __attribute_const__
Powered by blists - more mailing lists