mm: thp: simplify the implementation of mk_huge_pmd()
The implementation of mk_huge_pmd looks verbose, it could be just simplified to one line code. Signed-off-by: Yang Shi <yang.shi@linaro.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f44666b046
commit
340a43bed6
|
@ -764,10 +764,7 @@ pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
|
||||||
|
|
||||||
static inline pmd_t mk_huge_pmd(struct page *page, pgprot_t prot)
|
static inline pmd_t mk_huge_pmd(struct page *page, pgprot_t prot)
|
||||||
{
|
{
|
||||||
pmd_t entry;
|
return pmd_mkhuge(mk_pmd(page, prot));
|
||||||
entry = mk_pmd(page, prot);
|
|
||||||
entry = pmd_mkhuge(entry);
|
|
||||||
return entry;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct list_head *page_deferred_list(struct page *page)
|
static inline struct list_head *page_deferred_list(struct page *page)
|
||||||
|
|
Loading…
Reference in New Issue