aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJiri Slaby <jirislaby@gmail.com>2008-06-12 07:56:40 -0400
committerIngo Molnar <mingo@elte.hu>2008-06-19 07:31:42 -0400
commit59ea746337c69f6a5f1bc4d5e8544b3cbf12f801 (patch)
tree118c9c69eb8a2f6a22c62967ec36288153c87303 /include
parent952f4a0a9b27e6dbd5d32e330b3f609ebfa0b061 (diff)
MM: virtual address debug
Add some (configurable) expensive sanity checking to catch wrong address translations on x86. - create linux/mmdebug.h file to be able include this file in asm headers to not get unsolvable loops in header files - __phys_addr on x86_32 became a function in ioremap.c since PAGE_OFFSET, is_vmalloc_addr and VMALLOC_* non-constasts are undefined if declared in page_32.h - add __phys_addr_const for initializing doublefault_tss.__cr3 Tested on 386, 386pae, x86_64 and x86_64 numa=fake=2. Contains Andi's enable numa virtual address debug patch. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Cc: Andi Kleen <andi@firstfloor.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r--include/asm-x86/mmzone_64.h2
-rw-r--r--include/asm-x86/page_32.h3
-rw-r--r--include/linux/mm.h7
-rw-r--r--include/linux/mmdebug.h18
4 files changed, 22 insertions, 8 deletions
diff --git a/include/asm-x86/mmzone_64.h b/include/asm-x86/mmzone_64.h
index 594bd0dc1d08..facde3e5314f 100644
--- a/include/asm-x86/mmzone_64.h
+++ b/include/asm-x86/mmzone_64.h
@@ -7,7 +7,7 @@
7 7
8#ifdef CONFIG_NUMA 8#ifdef CONFIG_NUMA
9 9
10#define VIRTUAL_BUG_ON(x) 10#include <linux/mmdebug.h>
11 11
12#include <asm/smp.h> 12#include <asm/smp.h>
13 13
diff --git a/include/asm-x86/page_32.h b/include/asm-x86/page_32.h
index 424e82f8ae27..9159bfb9dcf9 100644
--- a/include/asm-x86/page_32.h
+++ b/include/asm-x86/page_32.h
@@ -64,7 +64,8 @@ typedef struct page *pgtable_t;
64#endif 64#endif
65 65
66#ifndef __ASSEMBLY__ 66#ifndef __ASSEMBLY__
67#define __phys_addr(x) ((x) - PAGE_OFFSET) 67#define __phys_addr_const(x) ((x) - PAGE_OFFSET)
68extern unsigned long __phys_addr(unsigned long);
68#define __phys_reloc_hide(x) RELOC_HIDE((x), 0) 69#define __phys_reloc_hide(x) RELOC_HIDE((x), 0)
69 70
70#ifdef CONFIG_FLATMEM 71#ifdef CONFIG_FLATMEM
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 586a943cab01..3414a8813e97 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -7,6 +7,7 @@
7 7
8#include <linux/gfp.h> 8#include <linux/gfp.h>
9#include <linux/list.h> 9#include <linux/list.h>
10#include <linux/mmdebug.h>
10#include <linux/mmzone.h> 11#include <linux/mmzone.h>
11#include <linux/rbtree.h> 12#include <linux/rbtree.h>
12#include <linux/prio_tree.h> 13#include <linux/prio_tree.h>
@@ -210,12 +211,6 @@ struct inode;
210 */ 211 */
211#include <linux/page-flags.h> 212#include <linux/page-flags.h>
212 213
213#ifdef CONFIG_DEBUG_VM
214#define VM_BUG_ON(cond) BUG_ON(cond)
215#else
216#define VM_BUG_ON(condition) do { } while(0)
217#endif
218
219/* 214/*
220 * Methods to modify the page usage count. 215 * Methods to modify the page usage count.
221 * 216 *
diff --git a/include/linux/mmdebug.h b/include/linux/mmdebug.h
new file mode 100644
index 000000000000..860ed1a71bbe
--- /dev/null
+++ b/include/linux/mmdebug.h
@@ -0,0 +1,18 @@
1#ifndef LINUX_MM_DEBUG_H
2#define LINUX_MM_DEBUG_H 1
3
4#include <linux/autoconf.h>
5
6#ifdef CONFIG_DEBUG_VM
7#define VM_BUG_ON(cond) BUG_ON(cond)
8#else
9#define VM_BUG_ON(cond) do { } while(0)
10#endif
11
12#ifdef CONFIG_DEBUG_VIRTUAL
13#define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
14#else
15#define VIRTUAL_BUG_ON(cond) do { } while(0)
16#endif
17
18#endif