From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ob0-f176.google.com (mail-ob0-f176.google.com [209.85.214.176]) by kanga.kvack.org (Postfix) with ESMTP id 999126B006C for ; Wed, 15 Oct 2014 15:20:30 -0400 (EDT) Received: by mail-ob0-f176.google.com with SMTP id m8so1613353obr.21 for ; Wed, 15 Oct 2014 12:20:30 -0700 (PDT) Received: from mail-oi0-x249.google.com (mail-oi0-x249.google.com [2607:f8b0:4003:c06::249]) by mx.google.com with ESMTPS id bq7si23123435obb.79.2014.10.15.12.20.29 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 15 Oct 2014 12:20:29 -0700 (PDT) Received: by mail-oi0-f73.google.com with SMTP id u20so284632oif.2 for ; Wed, 15 Oct 2014 12:20:29 -0700 (PDT) From: Yu Zhao Subject: [PATCH v2 2/2] mm: verify compound order when freeing a page Date: Wed, 15 Oct 2014 12:20:05 -0700 Message-Id: <1413400805-15547-2-git-send-email-yuzhao@google.com> In-Reply-To: <1413400805-15547-1-git-send-email-yuzhao@google.com> References: <1413400805-15547-1-git-send-email-yuzhao@google.com> Sender: owner-linux-mm@kvack.org List-ID: To: Andrew Morton , "Kirill A. Shutemov" , Mel Gorman , Rik van Riel , Ingo Molnar , Hugh Dickins , Sasha Levin , Bob Liu , Johannes Weiner , David Rientjes , Vlastimil Babka Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org, Yu Zhao This allows us to catch the bug fixed in the previous patch (mm: free compound page with correct order). Here we also verify whether a page is tail page or not -- tail pages are supposed to be freed along with their head, not by themselves. Reviewed-by: Kirill A. Shutemov Signed-off-by: Yu Zhao --- mm/page_alloc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 736d8e1..5bf44e4 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -750,6 +750,9 @@ static bool free_pages_prepare(struct page *page, unsigned int order) int i; int bad = 0; + VM_BUG_ON_PAGE(PageTail(page), page); + VM_BUG_ON_PAGE(PageHead(page) && compound_order(page) != order, page); + trace_mm_page_free(page, order); kmemcheck_free_shadow(page, order); -- 2.1.0.rc2.206.gedb03e5 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org