From: Jianguo Wu Date: Thu, 19 Dec 2013 01:08:59 +0000 (-0800) Subject: mm/hugetlb: check for pte NULL pointer in __page_check_address() X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=398bbc5710f23c0db6ebd4dd30bb331086bd16e7;p=linux-edison.git mm/hugetlb: check for pte NULL pointer in __page_check_address() commit 98398c32f6687ee1e1f3ae084effb4b75adb0747 upstream. In __page_check_address(), if address's pud is not present, huge_pte_offset() will return NULL, we should check the return value. Signed-off-by: Jianguo Wu Cc: Naoya Horiguchi Cc: Mel Gorman Cc: qiuxishi Cc: Hanjun Guo Acked-by: Kirill A. Shutemov Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- diff --git a/mm/rmap.c b/mm/rmap.c index 6280da86b5d..3f6077461ae 100644 --- a/mm/rmap.c +++ b/mm/rmap.c @@ -600,7 +600,11 @@ pte_t *__page_check_address(struct page *page, struct mm_struct *mm, spinlock_t *ptl; if (unlikely(PageHuge(page))) { + /* when pud is not present, pte will be NULL */ pte = huge_pte_offset(mm, address); + if (!pte) + return NULL; + ptl = &mm->page_table_lock; goto check; }