]> Pileus Git - ~andy/linux/blobdiff - mm/mempolicy.c
mbind: add BUG_ON(!vma) in new_vma_page()
[~andy/linux] / mm / mempolicy.c
index 9d778637b088472c4fb90dcdfbdff5e406d544a1..04729647f359c7c1fa3a91058cc1044c0db2df8d 100644 (file)
@@ -1196,12 +1196,14 @@ static struct page *new_vma_page(struct page *page, unsigned long private, int *
                        break;
                vma = vma->vm_next;
        }
+       /*
+        * queue_pages_range() confirms that @page belongs to some vma,
+        * so vma shouldn't be NULL.
+        */
+       BUG_ON(!vma);
 
        if (PageHuge(page))
                return alloc_huge_page_noerr(vma, address, 1);
-       /*
-        * if !vma, alloc_page_vma() will use task or system default policy
-        */
        return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
 }
 #else