Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1742225
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 5/7] perf tools: Fix syscalltbl build failure |
| Date | 2017-09-29 18:10 +0200 |
| Message-ID | <uv61s-8pT-43@gated-at.bofh.it> (permalink) |
| References | <uv61r-8pT-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Akemi Yagi <amyagi@gmail.com> The build of kernel v4.14-rc1 for i686 fails on RHEL 6 with the error in tools/perf: util/syscalltbl.c:157: error: expected ';', ',' or ')' before '__maybe_unused' mv: cannot stat `util/.syscalltbl.o.tmp': No such file or directory Fix it by placing/moving: #include <linux/compiler.h> outside of #ifdef HAVE_SYSCALL_TABLE block. Signed-off-by: Akemi Yagi <toracat@elrepo.org> Cc: Alan Bartlett <ajb@elrepo.org> Link: http://lkml.kernel.org/r/oq41r8$1v9$1@blaine.gmane.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> --- tools/perf/util/syscalltbl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/syscalltbl.c b/tools/perf/util/syscalltbl.c index 19e5db90394c..6eea7cff3d4e 100644 --- a/tools/perf/util/syscalltbl.c +++ b/tools/perf/util/syscalltbl.c @@ -15,9 +15,9 @@ #include "syscalltbl.h" #include <stdlib.h> +#include <linux/compiler.h> #ifdef HAVE_SYSCALL_TABLE -#include <linux/compiler.h> #include <string.h> #include "string2.h" #include "util.h" -- 2.13.5
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[GIT PULL 0/7] perf/urgent fixes Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
[PATCH 3/7] perf evsel: Fix attr.exclude_kernel setting for default cycles:p Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
[PATCH 4/7] perf report: Fix debug messages with --call-graph option Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
[PATCH 6/7] perf test: Fix vmlinux failure on s390x Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
[PATCH 7/7] perf test: Fix vmlinux failure on s390x part 2 Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
[PATCH 2/7] tools include: Sync kernel ABI headers with tooling headers Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
[PATCH 5/7] perf tools: Fix syscalltbl build failure Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
[PATCH 1/7] perf tools: Get all of tools/{arch,include}/ in the MANIFEST Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-29 18:10 +0200
Re: [GIT PULL 0/7] perf/urgent fixes Ingo Molnar <mingo@kernel.org> - 2017-09-29 19:40 +0200
csiph-web