* [PATCH -mm] headers: prctl.h -- Add missing linux/types.h
@ 2014-08-26 21:42 Cyrill Gorcunov
0 siblings, 0 replies; only message in thread
From: Cyrill Gorcunov @ 2014-08-26 21:42 UTC (permalink / raw)
To: Stephen Rothwell, Andrew Morton; +Cc: linux-next, linux-kernel
Stephen reported:
| After merging the akpm-current tree, today's linux-next build (x86_64
| allmodconfig) failed like this:
|
| ./usr/include/linux/prctl.h:132: found __[us]{8,16,32,64} type without #include <linux/types.h>
| In file included from /usr/include/x86_64-linux-gnu/sys/prctl.h:23:0,
| from Documentation/prctl/disable-tsc-test.c:14:
| ./usr/include/linux/prctl.h:132:2: error: unknown type name '__u64'
|
Include the header needed.
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
---
include/uapi/linux/prctl.h | 2 ++
1 file changed, 2 insertions(+)
Index: linux-2.6.git/include/uapi/linux/prctl.h
===================================================================
--- linux-2.6.git.orig/include/uapi/linux/prctl.h
+++ linux-2.6.git/include/uapi/linux/prctl.h
@@ -1,6 +1,8 @@
#ifndef _LINUX_PRCTL_H
#define _LINUX_PRCTL_H
+#include <linux/types.h>
+
/* Values to pass as first argument to prctl() */
#define PR_SET_PDEATHSIG 1 /* Second arg is a signal */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-08-26 21:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-26 21:42 [PATCH -mm] headers: prctl.h -- Add missing linux/types.h Cyrill Gorcunov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).