lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Fri, 22 Sep 2017 22:11:53 +0000 (UTC)
From:   Akemi Yagi <amyagi@...il.com>
To:     linux-kernel@...r.kernel.org
Subject: Build failure of kernel v4.14-rc due to error in tools/perf

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@...epo.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"

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ