[<prev] [next>] [day] [month] [year] [list]
Message-ID: <tip-xjpf80o64i2ko74aj2jih0qg@git.kernel.org>
Date: Thu, 2 May 2019 22:59:06 -0700
From: tip-bot for Arnaldo Carvalho de Melo <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: jolsa@...nel.org, hpa@...or.com, linux-kernel@...r.kernel.org,
arnd@...db.de, acme@...hat.com, arnaldo.melo@...il.com,
mingo@...nel.org, Vineet.Gupta1@...opsys.com, dalias@...c.org,
tglx@...utronix.de, namhyung@...nel.org, adrian.hunter@...el.com
Subject: [tip:perf/urgent] perf tools: Remove needless asm/unistd.h include
fixing build in some places
Commit-ID: 7e221b811f1472d0c58c7d4e0fe84fcacd22580a
Gitweb: https://git.kernel.org/tip/7e221b811f1472d0c58c7d4e0fe84fcacd22580a
Author: Arnaldo Carvalho de Melo <acme@...hat.com>
AuthorDate: Thu, 2 May 2019 09:26:23 -0400
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Thu, 2 May 2019 16:00:20 -0400
perf tools: Remove needless asm/unistd.h include fixing build in some places
We were including sys/syscall.h and asm/unistd.h, since sys/syscall.h
includes asm/unistd.h, sometimes this leads to the redefinition of
defines, breaking the build.
Noticed on ARC with uCLibc.
Cc: Adrian Hunter <adrian.hunter@...el.com>
Cc: Arnaldo Carvalho de Melo <arnaldo.melo@...il.com>
Cc: Arnd Bergmann <arnd@...db.de>
Cc: Jiri Olsa <jolsa@...nel.org>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Rich Felker <dalias@...c.org>
Cc: Vineet Gupta <Vineet.Gupta1@...opsys.com>
Link: https://lkml.kernel.org/n/tip-xjpf80o64i2ko74aj2jih0qg@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/util/cloexec.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/tools/perf/util/cloexec.c b/tools/perf/util/cloexec.c
index ca0fff6272be..06f48312c5ed 100644
--- a/tools/perf/util/cloexec.c
+++ b/tools/perf/util/cloexec.c
@@ -7,7 +7,6 @@
#include "asm/bug.h"
#include "debug.h"
#include <unistd.h>
-#include <asm/unistd.h>
#include <sys/syscall.h>
static unsigned long flag = PERF_FLAG_FD_CLOEXEC;
Powered by blists - more mailing lists