On Mon, Aug 29, 2022 at 04:00:12PM -0700, Sidhartha Kumar wrote:I missed changing the function argument to struct folio while rebasing onto Mike's patch,
static void hugetlb_delete_from_page_cache(struct page *page)Did you send the right version of this patch? It doesn't look like it'll
{
- ClearPageDirty(page);
- ClearPageUptodate(page);
- delete_from_page_cache(page);
+ folio_clear_dirty(folio);
+ folio_clear_uptodate(folio);
+ filemap_remove_folio(folio);
}
compile.