summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorAl Viro <viro@www.linux.org.uk>2005-08-23 22:45:36 +0100
committerLinus Torvalds <torvalds@g5.osdl.org>2005-08-23 18:43:41 -0700
commit697ae16ac0482283741f42378108b67b492870e8 (patch)
treed67f323c3cc9cc589838628dd2c257c12546b4d4 /arch
parentc3a0f7718c84737440a621f6a8600f2e7b896a44 (diff)
downloadlinux-3.10-697ae16ac0482283741f42378108b67b492870e8.tar.gz
linux-3.10-697ae16ac0482283741f42378108b67b492870e8.tar.bz2
linux-3.10-697ae16ac0482283741f42378108b67b492870e8.zip
[PATCH] Kconfig fix (DEBUG_PAGEALLOC on m32r)
DEBUG_PAGEALLOC is broken on m32r - the option had been blindly copied from i386; kernel_map_pages() had not and that's what is needed for DEBUG_PAGEALLOC to work (or link, while we are at it). Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/m32r/Kconfig.debug2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m32r/Kconfig.debug b/arch/m32r/Kconfig.debug
index 31039723804..bbf711bab69 100644
--- a/arch/m32r/Kconfig.debug
+++ b/arch/m32r/Kconfig.debug
@@ -20,7 +20,7 @@ config DEBUG_STACK_USAGE
config DEBUG_PAGEALLOC
bool "Page alloc debugging"
- depends on DEBUG_KERNEL
+ depends on DEBUG_KERNEL && BROKEN
help
Unmap pages from the kernel linear mapping after free_pages().
This results in a large slowdown, but helps to find certain types