[<prev] [next>] [day] [month] [year] [list]
Message-ID: <tip-vq26rsuwq1cqylpcyvq89c84@git.kernel.org>
Date: Mon, 9 Apr 2018 22:29:45 -0700
From: tip-bot for Arnaldo Carvalho de Melo <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: adrian.hunter@...el.com, naveen.n.rao@...ux.vnet.ibm.com,
wangnan0@...wei.com, hpa@...or.com, namhyung@...nel.org,
mingo@...nel.org, tglx@...utronix.de, dsahern@...il.com,
acme@...hat.com, sandipan@...ux.vnet.ibm.com,
linux-kernel@...r.kernel.org, jolsa@...nel.org
Subject: [tip:perf/urgent] perf tools: No need to include namespaces.h in
util.h
Commit-ID: ad0902e0c4004dc95bf15229933012121ff54033
Gitweb: https://git.kernel.org/tip/ad0902e0c4004dc95bf15229933012121ff54033
Author: Arnaldo Carvalho de Melo <acme@...hat.com>
AuthorDate: Fri, 6 Apr 2018 14:53:56 -0300
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Mon, 9 Apr 2018 10:57:50 -0300
perf tools: No need to include namespaces.h in util.h
The only thing that is needed there is a forward declaration for 'struct
nsinfo', so disentanble this, which in turns allows built-in clang
builds, i.e. 'make LIBCLANGLLVM=1 -C tools/perf'.
Cc: Adrian Hunter <adrian.hunter@...el.com>
Cc: David Ahern <dsahern@...il.com>
Cc: Jiri Olsa <jolsa@...nel.org>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Naveen N. Rao <naveen.n.rao@...ux.vnet.ibm.com>
Cc: Sandipan Das <sandipan@...ux.vnet.ibm.com>
Cc: Wang Nan <wangnan0@...wei.com>
Link: https://lkml.kernel.org/n/tip-vq26rsuwq1cqylpcyvq89c84@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/util/util.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h
index 9496365da3d7..c9626c206208 100644
--- a/tools/perf/util/util.h
+++ b/tools/perf/util/util.h
@@ -11,8 +11,7 @@
#include <stdlib.h>
#include <stdarg.h>
#include <linux/compiler.h>
-#include <linux/types.h>
-#include "namespaces.h"
+#include <sys/types.h>
/* General helper functions */
void usage(const char *err) __noreturn;
@@ -26,6 +25,7 @@ static inline void *zalloc(size_t size)
#define zfree(ptr) ({ free(*ptr); *ptr = NULL; })
struct dirent;
+struct nsinfo;
struct strlist;
int mkdir_p(char *path, mode_t mode);
Powered by blists - more mailing lists