Skip to content

Commit

Permalink
mm: replace multiple dcache flush with flush_dcache_folio()
Browse files Browse the repository at this point in the history
Simplify the code by using flush_dcache_folio().

Link: https://lkml.kernel.org/r/20220210123058.79206-8-songmuchun@bytedance.com
Signed-off-by: Muchun Song <songmuchun@bytedance.com>
Reviewed-by: Mike Kravetz <mike.kravetz@oracle.com>
Cc: Axel Rasmussen <axelrasmussen@google.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Fam Zheng <fam.zheng@bytedance.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Lars Persson <lars.persson@axis.com>
Cc: Peter Xu <peterx@redhat.com>
Cc: Xiongchun Duan <duanxiongchun@bytedance.com>
Cc: Zi Yan <ziy@nvidia.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Muchun Song authored and Linus Torvalds committed Mar 22, 2022
1 parent 7c25a0b commit 3150be8
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions mm/migrate.c
Original file line number Diff line number Diff line change
Expand Up @@ -916,12 +916,8 @@ static int move_to_new_page(struct page *newpage, struct page *page,
if (!PageMappingFlags(page))
page->mapping = NULL;

if (likely(!is_zone_device_page(newpage))) {
int i, nr = compound_nr(newpage);

for (i = 0; i < nr; i++)
flush_dcache_page(newpage + i);
}
if (likely(!is_zone_device_page(newpage)))
flush_dcache_folio(page_folio(newpage));
}
out:
return rc;
Expand Down

0 comments on commit 3150be8

Please sign in to comment.