Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1742312 > unrolled thread

[tip:perf/urgent] perf tools: Fix syscalltbl build failure

Started bytip-bot for Akemi Yagi <tipbot@zytor.com>
First post2017-09-29 22:10 +0200
Last post2017-09-29 22:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [tip:perf/urgent] perf tools: Fix syscalltbl build failure tip-bot for Akemi Yagi <tipbot@zytor.com> - 2017-09-29 22:10 +0200

#1742312 — [tip:perf/urgent] perf tools: Fix syscalltbl build failure

Fromtip-bot for Akemi Yagi <tipbot@zytor.com>
Date2017-09-29 22:10 +0200
Subject[tip:perf/urgent] perf tools: Fix syscalltbl build failure
Message-ID<uv9LI-2sg-21@gated-at.bofh.it>
Commit-ID:  090657c9fb7094e4c1b05c1713d6c2a12ef43dea
Gitweb:     https://git.kernel.org/tip/090657c9fb7094e4c1b05c1713d6c2a12ef43dea
Author:     Akemi Yagi <amyagi@gmail.com>
AuthorDate: Fri, 22 Sep 2017 22:11:53 +0000
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Mon, 25 Sep 2017 12:21:05 -0300

perf tools: Fix syscalltbl build failure

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 19e5db9..6eea7cf 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"

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web