ANDROID: mm/mempolicy.c fix up conversion to queue_folios_pte_range

In commit dc0a8466cd ("mm/mempolicy: convert queue_pages_pte_range()
to queue_folios_pte_range()"), queue_folios_pte_range was used, but due
to other upstream changes backported to the android14-6.1 branch, not
all of them were caught.  This fixes up the remaining instance, fixing
the build.

Fixes: dc0a8466cd ("mm/mempolicy: convert queue_pages_pte_range() to queue_folios_pte_range()")
Change-Id: I007bd7ad6a1e848d715b7a5a06a98d3603238148
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Greg Kroah-Hartman 2023-10-31 08:55:02 +00:00
parent c8da9c614c
commit d0be54afac

View File

@ -710,7 +710,7 @@ static const struct mm_walk_ops queue_pages_walk_ops = {
static const struct mm_walk_ops queue_pages_lock_vma_walk_ops = {
.hugetlb_entry = queue_pages_hugetlb,
.pmd_entry = queue_pages_pte_range,
.pmd_entry = queue_folios_pte_range,
.test_walk = queue_pages_test_walk,
.walk_lock = PGWALK_WRLOCK,
};