mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
hugetlb: convert PageHugeFreed to HPageFreed flag
Use new hugetlb specific HPageFreed flag to replace the PageHugeFreed interfaces. Link: https://lkml.kernel.org/r/20210122195231.324857-6-mike.kravetz@oracle.com Signed-off-by: Mike Kravetz <mike.kravetz@oracle.com> Reviewed-by: Oscar Salvador <osalvador@suse.de> Reviewed-by: Muchun Song <songmuchun@bytedance.com> Acked-by: Michal Hocko <mhocko@suse.com> Cc: David Hildenbrand <david@redhat.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Miaohe Lin <linmiaohe@huawei.com> Cc: Michal Hocko <mhocko@kernel.org> Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
9157c31186
commit
6c03714901
@@ -487,11 +487,13 @@ unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
|
||||
* allocator. Typically used for migration target pages when no pages
|
||||
* are available in the pool. The hugetlb free page path will
|
||||
* immediately free pages with this flag set to the buddy allocator.
|
||||
* HPG_freed - Set when page is on the free lists.
|
||||
*/
|
||||
enum hugetlb_page_flags {
|
||||
HPG_restore_reserve = 0,
|
||||
HPG_migratable,
|
||||
HPG_temporary,
|
||||
HPG_freed,
|
||||
__NR_HPAGEFLAGS,
|
||||
};
|
||||
|
||||
@@ -536,6 +538,7 @@ static inline void ClearHPage##uname(struct page *page) \
|
||||
HPAGEFLAG(RestoreReserve, restore_reserve)
|
||||
HPAGEFLAG(Migratable, migratable)
|
||||
HPAGEFLAG(Temporary, temporary)
|
||||
HPAGEFLAG(Freed, freed)
|
||||
|
||||
#ifdef CONFIG_HUGETLB_PAGE
|
||||
|
||||
|
Reference in New Issue
Block a user