mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 14:28:05 +00:00
646ff9d602
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
63 lines
2.0 KiB
Diff
63 lines
2.0 KiB
Diff
From 5e25d4d8ce731b609f1be874fd76f66bc03de441 Mon Sep 17 00:00:00 2001
|
|
From: Ulrich Drepper <drepper@akkadia.org>
|
|
Date: Tue, 29 May 2012 15:06:30 -0700
|
|
Subject: [PATCH 81/86] kbuild: install kernel-page-flags.h
|
|
|
|
commit 9295b7a07c859a42346221b5839be0ae612333b0 upstream.
|
|
|
|
Programs using /proc/kpageflags need to know about the various flags. The
|
|
<linux/kernel-page-flags.h> provides them and the comments in the file
|
|
indicate that it is supposed to be used by user-level code. But the file
|
|
is not installed.
|
|
|
|
Install the headers and mark the unstable flags as out-of-bounds. The
|
|
page-type tool is also adjusted to not duplicate the definitions
|
|
|
|
Signed-off-by: Ulrich Drepper <drepper@gmail.com>
|
|
Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
|
|
Acked-by: Fengguang Wu <fengguang.wu@intel.com>
|
|
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
|
|
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
|
|
[bwh: Backported to 3.2: adjust context; drop change to missing tools/vm/]
|
|
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
|
|
---
|
|
include/linux/Kbuild | 1 +
|
|
include/linux/kernel-page-flags.h | 4 ++++
|
|
2 files changed, 5 insertions(+)
|
|
|
|
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
|
|
index 619b565..bd21ecd 100644
|
|
--- a/include/linux/Kbuild
|
|
+++ b/include/linux/Kbuild
|
|
@@ -224,6 +224,7 @@ header-y += kd.h
|
|
header-y += kdev_t.h
|
|
header-y += kernel.h
|
|
header-y += kernelcapi.h
|
|
+header-y += kernel-page-flags.h
|
|
header-y += keyboard.h
|
|
header-y += keyctl.h
|
|
header-y += l2tp.h
|
|
diff --git a/include/linux/kernel-page-flags.h b/include/linux/kernel-page-flags.h
|
|
index bd92a89..096b05d 100644
|
|
--- a/include/linux/kernel-page-flags.h
|
|
+++ b/include/linux/kernel-page-flags.h
|
|
@@ -31,6 +31,8 @@
|
|
|
|
#define KPF_KSM 21
|
|
|
|
+#ifdef __KERNEL__
|
|
+
|
|
/* kernel hacking assistances
|
|
* WARNING: subject to change, never rely on them!
|
|
*/
|
|
@@ -43,4 +45,6 @@
|
|
#define KPF_ARCH 38
|
|
#define KPF_UNCACHED 39
|
|
|
|
+#endif /* __KERNEL__ */
|
|
+
|
|
#endif /* LINUX_KERNEL_PAGE_FLAGS_H */
|
|
--
|
|
1.7.9.5
|
|
|