The patch titled Subject: mmdebug: always evaluate the arguments to VM_BUG_ON_* has been added to the -mm tree. Its filename is mmdebug-always-evaluate-the-arguments-to-vm_bug_on_.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mmdebug-always-evaluate-the-arguments-to-vm_bug_on_.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mmdebug-always-evaluate-the-arguments-to-vm_bug_on_.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Matthew Wilcox <willy@xxxxxxxxxxxxxxx> Subject: mmdebug: always evaluate the arguments to VM_BUG_ON_* We have customer demand to use 1GB pages to map DAX files. Unlike the 2MB page support, the Linux MM does not currently support PUD pages, so I have attempted to add support for the necessary pieces for DAX huge PUD pages. Filesystems still need work to allocate 1GB pages. With ext4, I can only get 16MB of contiguous space, although it is aligned. With XFS, I can get 80MB less than 1GB, and it's not aligned. The XFS problem may be due to the small amount of RAM in my test machine. I'd like to thank Dave Chinner & Kirill Shutemov for their reviews of v1. The conversion of pmd_fault & pud_fault to huge_fault is thanks to Dave's poking, and Kirill spotted a couple of problems in the MM code. I've done some light testing using a program to mmap a block device with DAX enabled, calling mincore() and examining /proc/smaps and /proc/pagemap. This patch (of 14): I recently got the order of arguments to VM_BUG_ON_VMA the wrong way around, which was only noticable when compiling with CONFIG_DEBUG_VM. Prevent the next mistake of this kind by making the macros evaluate both their arguments at compile time (this has no effect on the built kernel). Signed-off-by: Matthew Wilcox <willy@xxxxxxxxxxxxxxx> Cc: Dave Chinner <david@xxxxxxxxxxxxx> Cc: Jan Kara <jack@xxxxxxx> Cc: Theodore Ts'o <tytso@xxxxxxx> Cc: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: "Kirill A. Shutemov" <kirill@xxxxxxxxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mmdebug.h | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff -puN include/linux/mmdebug.h~mmdebug-always-evaluate-the-arguments-to-vm_bug_on_ include/linux/mmdebug.h --- a/include/linux/mmdebug.h~mmdebug-always-evaluate-the-arguments-to-vm_bug_on_ +++ a/include/linux/mmdebug.h @@ -41,9 +41,24 @@ void dump_mm(const struct mm_struct *mm) #define VM_WARN_ONCE(cond, format...) WARN_ONCE(cond, format) #else #define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond) -#define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond) -#define VM_BUG_ON_VMA(cond, vma) VM_BUG_ON(cond) -#define VM_BUG_ON_MM(cond, mm) VM_BUG_ON(cond) +#define VM_BUG_ON_PAGE(cond, page) \ + do { \ + if (0) dump_page(page, ""); \ + VM_BUG_ON(cond); \ + } while (0) + +#define VM_BUG_ON_VMA(cond, vma) \ + do { \ + if (0) dump_vma(vma); \ + VM_BUG_ON(cond); \ + } while (0) + +#define VM_BUG_ON_MM(cond, mm) \ + do { \ + if (0) dump_mm(mm); \ + VM_BUG_ON(cond); \ + } while (0) + #define VM_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond) #define VM_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond) #define VM_WARN_ONCE(cond, format...) BUILD_BUG_ON_INVALID(cond) _ Patches currently in -mm which might be from willy@xxxxxxxxxxxxxxx are mmdebug-always-evaluate-the-arguments-to-vm_bug_on_.patch mm-convert-an-open-coded-vm_bug_on_vma.patch mmfsdax-change-pmd_fault-to-huge_fault.patch mm-add-support-for-pud-sized-transparent-hugepages.patch mincore-add-support-for-puds.patch procfs-add-support-for-puds-to-smaps-clear_refs-and-pagemap.patch x86-unify-native__get_and_clear-smp-case.patch x86-fix-whitespace-issues.patch x86-add-support-for-pud-sized-transparent-hugepages.patch dax-support-for-transparent-pud-pages.patch ext4-support-for-pud-sized-transparent-huge-pages.patch dax-use-vmf-gfp_mask.patch dax-remove-unnecessary-rechecking-of-i_size.patch dax-use-vmf-pgoff-in-fault-handlers.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html