Commit 0858b5eb authored by Sidhartha Kumar's avatar Sidhartha Kumar Committed by Andrew Morton

mm/memory-failure: convert __free_raw_hwp_pages() to folios

Change __free_raw_hwp_pages() to __folio_free_raw_hwp() and modify its
callers to pass in a folio.

Link: https://lkml.kernel.org/r/20230112204608.80136-7-sidhartha.kumar@oracle.comSigned-off-by: default avatarSidhartha Kumar <sidhartha.kumar@oracle.com>
Acked-by: default avatarNaoya Horiguchi <naoya.horiguchi@nec.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Miaohe Lin <linmiaohe@huawei.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent b02e7582
...@@ -1700,12 +1700,11 @@ static inline struct llist_head *raw_hwp_list_head(struct folio *folio) ...@@ -1700,12 +1700,11 @@ static inline struct llist_head *raw_hwp_list_head(struct folio *folio)
return (struct llist_head *)&folio->_hugetlb_hwpoison; return (struct llist_head *)&folio->_hugetlb_hwpoison;
} }
static unsigned long __free_raw_hwp_pages(struct page *hpage, bool move_flag) static unsigned long __folio_free_raw_hwp(struct folio *folio, bool move_flag)
{ {
struct llist_head *head; struct llist_head *head;
struct llist_node *t, *tnode; struct llist_node *t, *tnode;
unsigned long count = 0; unsigned long count = 0;
struct folio *folio = page_folio(hpage);
head = raw_hwp_list_head(folio); head = raw_hwp_list_head(folio);
llist_for_each_safe(tnode, t, head->first) { llist_for_each_safe(tnode, t, head->first) {
...@@ -1763,7 +1762,7 @@ static int hugetlb_set_page_hwpoison(struct page *hpage, struct page *page) ...@@ -1763,7 +1762,7 @@ static int hugetlb_set_page_hwpoison(struct page *hpage, struct page *page)
* Once hugetlb_raw_hwp_unreliable is set, raw_hwp_page is not * Once hugetlb_raw_hwp_unreliable is set, raw_hwp_page is not
* used any more, so free it. * used any more, so free it.
*/ */
__free_raw_hwp_pages(hpage, false); __folio_free_raw_hwp(folio, false);
} }
return ret; return ret;
} }
...@@ -1784,7 +1783,7 @@ static unsigned long folio_free_raw_hwp(struct folio *folio, bool move_flag) ...@@ -1784,7 +1783,7 @@ static unsigned long folio_free_raw_hwp(struct folio *folio, bool move_flag)
if (folio_test_hugetlb_raw_hwp_unreliable(folio)) if (folio_test_hugetlb_raw_hwp_unreliable(folio))
return 0; return 0;
return __free_raw_hwp_pages(&folio->page, move_flag); return __folio_free_raw_hwp(folio, move_flag);
} }
void folio_clear_hugetlb_hwpoison(struct folio *folio) void folio_clear_hugetlb_hwpoison(struct folio *folio)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment