mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
mm/hugetlb_cgroup: convert hugetlb_cgroup_from_page() to folios
Introduce folios in __remove_hugetlb_page() by converting hugetlb_cgroup_from_page() to use folios. Also gets rid of unsed hugetlb_cgroup_from_page_resv() function. Link: https://lkml.kernel.org/r/20221101223059.460937-3-sidhartha.kumar@oracle.com Signed-off-by: Sidhartha Kumar <sidhartha.kumar@oracle.com> Reviewed-by: Muchun Song <songmuchun@bytedance.com> Cc: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> Cc: Bui Quang Minh <minhquangbui99@gmail.com> Cc: Matthew Wilcox (Oracle) <willy@infradead.org> Cc: Miaohe Lin <linmiaohe@huawei.com> Cc: Mike Kravetz <mike.kravetz@oracle.com> Cc: Mina Almasry <almasrymina@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
committed by
Andrew Morton
parent
a098c97772
commit
f074732d59
@@ -67,27 +67,34 @@ struct hugetlb_cgroup {
|
||||
};
|
||||
|
||||
static inline struct hugetlb_cgroup *
|
||||
__hugetlb_cgroup_from_page(struct page *page, bool rsvd)
|
||||
__hugetlb_cgroup_from_folio(struct folio *folio, bool rsvd)
|
||||
{
|
||||
VM_BUG_ON_PAGE(!PageHuge(page), page);
|
||||
struct page *tail;
|
||||
|
||||
if (compound_order(page) < HUGETLB_CGROUP_MIN_ORDER)
|
||||
VM_BUG_ON_FOLIO(!folio_test_hugetlb(folio), folio);
|
||||
if (folio_order(folio) < HUGETLB_CGROUP_MIN_ORDER)
|
||||
return NULL;
|
||||
if (rsvd)
|
||||
return (void *)page_private(page + SUBPAGE_INDEX_CGROUP_RSVD);
|
||||
else
|
||||
return (void *)page_private(page + SUBPAGE_INDEX_CGROUP);
|
||||
|
||||
if (rsvd) {
|
||||
tail = folio_page(folio, SUBPAGE_INDEX_CGROUP_RSVD);
|
||||
return (void *)page_private(tail);
|
||||
}
|
||||
|
||||
else {
|
||||
tail = folio_page(folio, SUBPAGE_INDEX_CGROUP);
|
||||
return (void *)page_private(tail);
|
||||
}
|
||||
}
|
||||
|
||||
static inline struct hugetlb_cgroup *hugetlb_cgroup_from_page(struct page *page)
|
||||
static inline struct hugetlb_cgroup *hugetlb_cgroup_from_folio(struct folio *folio)
|
||||
{
|
||||
return __hugetlb_cgroup_from_page(page, false);
|
||||
return __hugetlb_cgroup_from_folio(folio, false);
|
||||
}
|
||||
|
||||
static inline struct hugetlb_cgroup *
|
||||
hugetlb_cgroup_from_page_rsvd(struct page *page)
|
||||
hugetlb_cgroup_from_folio_rsvd(struct folio *folio)
|
||||
{
|
||||
return __hugetlb_cgroup_from_page(page, true);
|
||||
return __hugetlb_cgroup_from_folio(folio, true);
|
||||
}
|
||||
|
||||
static inline void __set_hugetlb_cgroup(struct folio *folio,
|
||||
@@ -181,19 +188,13 @@ static inline void hugetlb_cgroup_uncharge_file_region(struct resv_map *resv,
|
||||
{
|
||||
}
|
||||
|
||||
static inline struct hugetlb_cgroup *hugetlb_cgroup_from_page(struct page *page)
|
||||
static inline struct hugetlb_cgroup *hugetlb_cgroup_from_folio(struct folio *folio)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline struct hugetlb_cgroup *
|
||||
hugetlb_cgroup_from_page_resv(struct page *page)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline struct hugetlb_cgroup *
|
||||
hugetlb_cgroup_from_page_rsvd(struct page *page)
|
||||
hugetlb_cgroup_from_folio_rsvd(struct folio *folio)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user