projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bad6da6
)
mm: convert is_transparent_hugepage() to use a folio
author
Matthew Wilcox (Oracle)
<willy@infradead.org>
Wed, 11 Jan 2023 14:29:05 +0000
(14:29 +0000)
committer
Andrew Morton
<akpm@linux-foundation.org>
Fri, 3 Feb 2023 06:32:58 +0000
(22:32 -0800)
Replace a use of page->compound_dtor with its folio equivalent.
Link:
https://lkml.kernel.org/r/20230111142915.1001531-20-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/huge_memory.c
patch
|
blob
|
history
diff --git
a/mm/huge_memory.c
b/mm/huge_memory.c
index 9570f03cdee4a0183a5a6162be0d5aa930ff893b..bfa960f012fab8067ca503818945f884d759e152 100644
(file)
--- a/
mm/huge_memory.c
+++ b/
mm/huge_memory.c
@@
-591,12
+591,14
@@
void prep_transhuge_page(struct page *page)
static inline bool is_transparent_hugepage(struct page *page)
{
+ struct folio *folio;
+
if (!PageCompound(page))
return false;
-
page = compound_head
(page);
- return is_huge_zero_page(page) ||
-
page[1].compound
_dtor == TRANSHUGE_PAGE_DTOR;
+
folio = page_folio
(page);
+ return is_huge_zero_page(
&folio->
page) ||
+
folio->_folio
_dtor == TRANSHUGE_PAGE_DTOR;
}
static unsigned long __thp_get_unmapped_area(struct file *filp,