mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-07 07:05:20 +00:00
mm: thp: cleanup: mv alloc_hugepage to better place
Move alloc_hugepage() to a better place, no need for a seperate #ifndef CONFIG_NUMA Signed-off-by: Bob Liu <bob.liu@oracle.com> Reviewed-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Andrea Arcangeli <aarcange@redhat.com> Cc: Mel Gorman <mel@csn.ul.ie> Cc: Andrew Davidoff <davidoff@qedmf.net> Cc: Wanpeng Li <liwanp@linux.vnet.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0151e3d6d9
commit
10dc4155c7
1 changed files with 6 additions and 8 deletions
|
@ -759,14 +759,6 @@ static inline struct page *alloc_hugepage_vma(int defrag,
|
||||||
HPAGE_PMD_ORDER, vma, haddr, nd);
|
HPAGE_PMD_ORDER, vma, haddr, nd);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_NUMA
|
|
||||||
static inline struct page *alloc_hugepage(int defrag)
|
|
||||||
{
|
|
||||||
return alloc_pages(alloc_hugepage_gfpmask(defrag, 0),
|
|
||||||
HPAGE_PMD_ORDER);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static bool set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
|
static bool set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
|
||||||
struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
|
struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
|
||||||
struct page *zero_page)
|
struct page *zero_page)
|
||||||
|
@ -2251,6 +2243,12 @@ static struct page
|
||||||
return *hpage;
|
return *hpage;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
static inline struct page *alloc_hugepage(int defrag)
|
||||||
|
{
|
||||||
|
return alloc_pages(alloc_hugepage_gfpmask(defrag, 0),
|
||||||
|
HPAGE_PMD_ORDER);
|
||||||
|
}
|
||||||
|
|
||||||
static struct page *khugepaged_alloc_hugepage(bool *wait)
|
static struct page *khugepaged_alloc_hugepage(bool *wait)
|
||||||
{
|
{
|
||||||
struct page *hpage;
|
struct page *hpage;
|
||||||
|
|
Loading…
Add table
Reference in a new issue