diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-06-19 13:28:11 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-19 13:33:11 +0200 |
commit | 7aa413def76146f7b3784228556d9e4bc562eab3 (patch) | |
tree | a90291b6fd72f46f33bc5af07813784c0468d23d | |
parent | a1bf9631be7332ce0641e299ddafad2d8223100f (diff) | |
download | linux-3.10-7aa413def76146f7b3784228556d9e4bc562eab3.tar.gz linux-3.10-7aa413def76146f7b3784228556d9e4bc562eab3.tar.bz2 linux-3.10-7aa413def76146f7b3784228556d9e4bc562eab3.zip |
x86, MM: virtual address debug, cleanups
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | include/linux/mmdebug.h | 4 | ||||
-rw-r--r-- | mm/vmalloc.c | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/include/linux/mmdebug.h b/include/linux/mmdebug.h index 860ed1a71bb..8a550987719 100644 --- a/include/linux/mmdebug.h +++ b/include/linux/mmdebug.h @@ -6,13 +6,13 @@ #ifdef CONFIG_DEBUG_VM #define VM_BUG_ON(cond) BUG_ON(cond) #else -#define VM_BUG_ON(cond) do { } while(0) +#define VM_BUG_ON(cond) do { } while (0) #endif #ifdef CONFIG_DEBUG_VIRTUAL #define VIRTUAL_BUG_ON(cond) BUG_ON(cond) #else -#define VIRTUAL_BUG_ON(cond) do { } while(0) +#define VIRTUAL_BUG_ON(cond) do { } while (0) #endif #endif diff --git a/mm/vmalloc.c b/mm/vmalloc.c index dc41e9c8ca6..830a5580c5d 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -180,8 +180,10 @@ struct page *vmalloc_to_page(const void *vmalloc_addr) pmd_t *pmd; pte_t *ptep, pte; - /* XXX we might need to change this if we add VIRTUAL_BUG_ON for - * architectures that do not vmalloc module space */ + /* + * XXX we might need to change this if we add VIRTUAL_BUG_ON for + * architectures that do not vmalloc module space + */ VIRTUAL_BUG_ON(!is_vmalloc_addr(vmalloc_addr) && !is_module_address(addr)); |