mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Build failure of kernel v4.14-rc due to error in tools/perf
@ 2017-09-22 22:11 Akemi Yagi
  2017-09-29 20:05 ` [tip:perf/urgent] perf tools: Fix syscalltbl build failure tip-bot for Akemi Yagi
  0 siblings, 1 reply; 2+ messages in thread
From: Akemi Yagi @ 2017-09-22 22:11 UTC (permalink / raw)
  To: linux-kernel

Hi,

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

This is fixed by placing/moving

#include <linux/compiler.h>

outside of #ifdef HAVE_SYSCALL_TABLE as shown in the patch below.

Thanks,

Akemi Yagi <toracat@elrepo.org>
2017-09-22

--- a/tools/perf/util/syscalltbl.c      2017-09-16 15:47:51.000000000 -0700
+++ b/tools/perf/util/syscalltbl.c      2017-09-22 00:16:16.119007615 -0700
@@ -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"

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-09-29 20:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-22 22:11 Build failure of kernel v4.14-rc due to error in tools/perf Akemi Yagi
2017-09-29 20:05 ` [tip:perf/urgent] perf tools: Fix syscalltbl build failure tip-bot for Akemi Yagi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®