diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2008-06-12 07:56:40 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-19 07:31:42 -0400 |
commit | 59ea746337c69f6a5f1bc4d5e8544b3cbf12f801 (patch) | |
tree | 118c9c69eb8a2f6a22c62967ec36288153c87303 /mm/vmalloc.c | |
parent | 952f4a0a9b27e6dbd5d32e330b3f609ebfa0b061 (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 'mm/vmalloc.c')
-rw-r--r-- | mm/vmalloc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 6e45b0f3d125..dc41e9c8ca6f 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c | |||
@@ -180,6 +180,11 @@ struct page *vmalloc_to_page(const void *vmalloc_addr) | |||
180 | pmd_t *pmd; | 180 | pmd_t *pmd; |
181 | pte_t *ptep, pte; | 181 | pte_t *ptep, pte; |
182 | 182 | ||
183 | /* XXX we might need to change this if we add VIRTUAL_BUG_ON for | ||
184 | * architectures that do not vmalloc module space */ | ||
185 | VIRTUAL_BUG_ON(!is_vmalloc_addr(vmalloc_addr) && | ||
186 | !is_module_address(addr)); | ||
187 | |||
183 | if (!pgd_none(*pgd)) { | 188 | if (!pgd_none(*pgd)) { |
184 | pud = pud_offset(pgd, addr); | 189 | pud = pud_offset(pgd, addr); |
185 | if (!pud_none(*pud)) { | 190 | if (!pud_none(*pud)) { |