x86, MM: virtual address debug, cleanups
authorIngo Molnar <mingo@elte.hu>
Thu, 19 Jun 2008 11:28:11 +0000 (13:28 +0200)
committerIngo Molnar <mingo@elte.hu>
Thu, 19 Jun 2008 11:33:11 +0000 (13:33 +0200)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
include/linux/mmdebug.h
mm/vmalloc.c

index 860ed1a..8a55098 100644 (file)
@@ -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
index dc41e9c..830a558 100644 (file)
@@ -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));