This is a note to let you know that I've just added the patch titled mm: don't pointlessly use BUG_ON() for sanity check to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: mm-don-t-pointlessly-use-bug_on-for-sanity-check.patch and it can be found in the queue-3.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 50f5aa8a9b248fa4262cf379863ec9a531b49737 Mon Sep 17 00:00:00 2001 From: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> Date: Mon, 28 Apr 2014 14:24:09 -0700 Subject: mm: don't pointlessly use BUG_ON() for sanity check From: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> commit 50f5aa8a9b248fa4262cf379863ec9a531b49737 upstream. BUG_ON() is a big hammer, and should be used _only_ if there is some major corruption that you cannot possibly recover from, making it imperative that the current process (and possibly the whole machine) be terminated with extreme prejudice. The trivial sanity check in the vmacache code is *not* such a fatal error. Recovering from it is absolutely trivial, and using BUG_ON() just makes it harder to debug for no actual advantage. To make matters worse, the placement of the BUG_ON() (only if the range check matched) actually makes it harder to hit the sanity check to begin with, so _if_ there is a bug (and we just got a report from Srivatsa Bhat that this can indeed trigger), it is harder to debug not just because the machine is possibly dead, but because we don't have better coverage. BUG_ON() must *die*. Maybe we should add a checkpatch warning for it, because it is simply just about the worst thing you can ever do if you hit some "this cannot happen" situation. Reported-by: Srivatsa S. Bhat <srivatsa.bhat@xxxxxxxxxxxxxxxxxx> Cc: Davidlohr Bueso <davidlohr@xxxxxx> Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Mel Gorman <mgorman@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- mm/vmacache.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) --- a/mm/vmacache.c +++ b/mm/vmacache.c @@ -81,10 +81,12 @@ struct vm_area_struct *vmacache_find(str for (i = 0; i < VMACACHE_SIZE; i++) { struct vm_area_struct *vma = current->vmacache[i]; - if (vma && vma->vm_start <= addr && vma->vm_end > addr) { - BUG_ON(vma->vm_mm != mm); + if (!vma) + continue; + if (WARN_ON_ONCE(vma->vm_mm != mm)) + break; + if (vma->vm_start <= addr && vma->vm_end > addr) return vma; - } } return NULL; Patches currently in stable-queue which might be from torvalds@xxxxxxxxxxxxxxxxxxxx are queue-3.14/mm-vmscan-shrink_slab-rename-max_pass-freeable.patch queue-3.14/mm-per-thread-vma-caching.patch queue-3.14/perf-fix-perf-bug-in-fork.patch queue-3.14/mm-thp-move-invariant-bug-check-out-of-loop-in-__split_huge_page_map.patch queue-3.14/swap-change-swap_list_head-to-plist-add-swap_avail_head.patch queue-3.14/lib-plist-add-helper-functions.patch queue-3.14/swap-change-swap_info-singly-linked-list-to-list_head.patch queue-3.14/mm-compaction-avoid-isolating-pinned-pages.patch queue-3.14/mm-readahead.c-fix-readahead-failure-for-memoryless-numa-nodes-and-limit-readahead-pages.patch queue-3.14/lib-plist-add-plist_requeue.patch queue-3.14/mm-exclude-memoryless-nodes-from-zone_reclaim.patch queue-3.14/mm-numa-do-not-mark-ptes-pte_numa-when-splitting-huge-pages.patch queue-3.14/mm-filemap.c-avoid-always-dirtying-mapping-flags-on-o_direct.patch queue-3.14/mm-compaction-ignore-pageblock-skip-when-manually-invoking-compaction.patch queue-3.14/vmscan-reclaim_clean_pages_from_list-must-use-mod_zone_page_state.patch queue-3.14/mm-compaction-do-not-call-suitable_migration_target-on-every-page.patch queue-3.14/mm-compaction-determine-isolation-mode-only-once.patch queue-3.14/mm-compaction-check-pageblock-suitability-once-per-pageblock.patch queue-3.14/mm-optimize-put_mems_allowed-usage.patch queue-3.14/mm-vmscan-respect-numa-policy-mask-when-shrinking-slab-on-direct-reclaim.patch queue-3.14/mm-compaction-clean-up-code-on-success-of-ballon-isolation.patch queue-3.14/hugetlb-ensure-hugepage-access-is-denied-if-hugepages-are-not-supported.patch queue-3.14/mm-migrate-close-race-between-migration-completion-and-mprotect.patch queue-3.14/mm-compaction-disallow-high-order-page-for-migration-target.patch queue-3.14/mm-don-t-pointlessly-use-bug_on-for-sanity-check.patch queue-3.14/mm-compaction-change-the-timing-to-check-to-drop-the-spinlock.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html