Skip to content
Snippets Groups Projects
Commit 7b8ee84d authored by Harvey Harrison's avatar Harvey Harrison Committed by Linus Torvalds
Browse files

mm: fix integer as NULL pointer warnings


mm/hugetlb.c:207:11: warning: Using plain integer as NULL pointer

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b331d259
No related branches found
No related tags found
No related merge requests found
......@@ -204,7 +204,7 @@ static struct page *alloc_fresh_huge_page_node(int nid)
if (page) {
if (arch_prepare_hugepage(page)) {
__free_pages(page, HUGETLB_PAGE_ORDER);
return 0;
return NULL;
}
set_compound_page_dtor(page, free_huge_page);
spin_lock(&hugetlb_lock);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment