Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 969e8d7e authored by Chen Gang's avatar Chen Gang Committed by Linus Torvalds
Browse files

include/linux/huge_mm.h: return NULL instead of false for pmd_trans_huge_lock()



The return value of pmd_trans_huge_lock() is a pointer, not a boolean
value, so use NULL instead of false as the return value.

Signed-off-by: default avatarChen Gang <gang.chen.5i5j@gmail.com>
Acked-by: default avatarKirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0b355eaa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ static inline spinlock_t *pmd_trans_huge_lock(pmd_t *pmd,
	if (pmd_trans_huge(*pmd) || pmd_devmap(*pmd))
		return __pmd_trans_huge_lock(pmd, vma);
	else
		return false;
		return NULL;
}
static inline int hpage_nr_pages(struct page *page)
{