From: Konstantin Khlebnikov Date: Fri, 20 May 2016 00:11:46 +0000 (-0700) Subject: mm/rmap: replace BUG_ON(anon_vma->degree) with VM_WARN_ON X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e4c5800a3991f0c6a766983535dfc10d51802cf6;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git mm/rmap: replace BUG_ON(anon_vma->degree) with VM_WARN_ON This check effectively catches anon vma hierarchy inconsistence and some vma corruptions. It was effective for catching corner cases in anon vma reusing logic. For now this code seems stable so check could be hidden under CONFIG_DEBUG_VM and replaced with WARN because it's not so fatal. Signed-off-by: Konstantin Khlebnikov Suggested-by: Vasily Averin Acked-by: Vlastimil Babka Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/rmap.c b/mm/rmap.c index 307b555024ef..4cebe8a7c2cb 100644 --- a/mm/rmap.c +++ b/mm/rmap.c @@ -409,7 +409,7 @@ void unlink_anon_vmas(struct vm_area_struct *vma) list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) { struct anon_vma *anon_vma = avc->anon_vma; - BUG_ON(anon_vma->degree); + VM_WARN_ON(anon_vma->degree); put_anon_vma(anon_vma); list_del(&avc->same_vma);