diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-08-24 01:45:36 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-24 05:43:41 +0400 |
commit | 697ae16ac0482283741f42378108b67b492870e8 (patch) | |
tree | d67f323c3cc9cc589838628dd2c257c12546b4d4 /arch/m32r | |
parent | c3a0f7718c84737440a621f6a8600f2e7b896a44 (diff) | |
download | linux-697ae16ac0482283741f42378108b67b492870e8.tar.xz |
[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/m32r')
-rw-r--r-- | arch/m32r/Kconfig.debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m32r/Kconfig.debug b/arch/m32r/Kconfig.debug index 31039723804f..bbf711bab69e 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 |